diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..0cd99cd --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "Jumper"] + path = Jumper + url = https://github.com/Yonaba/Jumper.git diff --git a/Jumper b/Jumper new file mode 160000 index 0000000..df4eb22 --- /dev/null +++ b/Jumper @@ -0,0 +1 @@ +Subproject commit df4eb22f2b5a95c003bad9544ed560b2e51654f5 diff --git a/README.md b/README.md index e995330..204bb47 100644 --- a/README.md +++ b/README.md @@ -1,78 +1,84 @@ -# advanced_npc +advanced_npc +============ + +Introduction +------------ + Advanced NPC framework for Minetest, based on mobs_redo. The goal of this mod is to be able to have live villages in Minetest. These NPCs are highly inspired by the typical NPCs of Harvest Moon games. The general idea is that on almost all buildings of a village there are NPCs that are kind of intelligent: they have daily tasks they perform, can speak to players, can trade with the player, can use their own items (chests for example), know where to go around their village, can be lumbers, miners or any other Minetest-suitable profession and can ultimately engage into relationships with the player. And while basically only players are mentioned here, the ultimate goal is that they can do all of this also among themselves, so that villages are completely alive and evolving by themselves, without necessary player intervention. ----------- -Current roadmap: +License +------- -Version 1.0 ------------ -Phase 1: Gifts and relationships: In progress -- NPCs should be able to receive items -- NPCs will have favorite and disliked items -- Giving an NPC their favorite or disliked item will affect positively/negatively their +__advanced_npc__ is Copyright (C) 2016-2017 Hector Franqui (zorman2000), licensed under the GPLv3 license. See 'LICENSE.txt' for details. + +The Jumper library is Copyright (c) 2012-2013 Roland Yonaba, licensed under MIT license. See 'Jumper/LICENSE.txt' for details. + + +Current progress and roadmap +---------------------------- + +__Version 1.0__ + +__Phase 1__: Gifts and relationships: In progress +- [x] NPCs should be able to receive items +- [x] NPCs will have favorite and disliked items +- [x] Giving an NPC their favorite or disliked item will affect positively/negatively their relationship with that player. -- Eventually, an NPC can fall in love with that player and marry him/her -- Relationships among NPCs should be possible too +- [x] Eventually, an NPC can fall in love with that player and marry him/her +- [ ] Relationships among NPCs should be possible too -Phase 2: Dialogues: Completed -- NPCs should be able to perform complex dialogues: - - Use yes/no or multiple option dialogue boxes to interact with player - - Answers and responses by player - TODO: Specific dialogues on certain environment flag (so that events can change what an NPC says +__Phase 2__: Dialogues: In progress +- [ ] NPCs should be able to perform complex dialogues: + - [x] Use yes/no or multiple option dialogue boxes to interact with player + - [x] Answers and responses by player + - [ ] Specific dialogues on certain flags (so that events can change what an NPC says) -Phase 3: Trading -- NPCs should be able to trade, either buy or sell items to/from player and other NPCs -- Goal is to implement trading with player first +__Phase 3__: Trading: In progress +- [ ] NPCs should be able to trade, either buy or sell items to/from player and other NPCs + - There are two types of traders: casual and dedicated. + - [x] Casual traders are normal NPC which occasionaly make buy or sell offers to the player + - [ ] Dedicated traders are traders that, when talked to, always make buy and sell offers. They have a greater variety too. +- [ ] NPCs will also be able to offer "services", for example, repairing tools, by receiving an item and a payment, and then returning a specific item. -Phase 4: Owning nodes, being able to go to places -- NPCs should be able to own chests, furnaces and doors and use them -- NPCs should be able to go to specific places in their own homes or villages or in the world in general: - - For this, a places framework should be defined - - NPCs at least should know where their bed is, and use it +__Phase 4__: Actions: In progress +- [ ] NPCs should be able to use chests, furnaces, doors, beds and sit on "sittable" nodes (in progress) +- [x] NPCs should be able to walk to specific places. Should also be able to open doors, fence gates and any other type of openable node while going to a place. +- [x] NPCs should have the ability to identify nodes that belong to him/her, and recall them/ -Phase 5: Activities and jobs - - NPCs should be able to dig and place nodes - - NPCs should be able to perform different activities on different times of the day +__Phase 5__: Schedules and fundamental jobs + - [ ] NPCs should be able to perform different activities on depending on the time of the day. For instance, a NPC could be farming during the morning, selling its product on the afternoon, and comfortable sitting at home during the night. + - [ ] Add the fundamental jobs, which are: + - [ ] Mining + - [ ] Wood cutting + - [ ] Farming + - [ ] Cooking -Phase 6: Advanced spawners for villages +__Phase 6__: Advanced spawners for villages + - [ ] Support for mg_villages mod by Sokomine + - [ ] Identify, on medieval villages, houses that NPC can live on. + - [ ] Identify the amount of NPC that the house can support + - [ ] Spawn NPCs and assign them a bed. Detect sharable objects (chest, furnace, benches) + - [ ] Assign them random schedules based on the type of building they spawn. + + +__Version 2.0__ -Version 2.0 ------------ Phase 7: Make NPCs scriptable -Phase 8: Improve NPCs so that they can be farmers, lumberjacks and miners +Phase 8: Improve NPCs pathfinding, allow them to go upstairs. Phase 9: Improve NPCs so that they can tame and own farm animals Phase 10: Improve NPCs so that they can run on carts, boats and (maybe) horses -Version 3.0 ------------ +__Version 3.0__ + Phase 11: Integrate with commerce mod Phase 12: Improve relationships for obtaining more benefits from a married NPC Phase 13: Improve AI to include support for house families -Phase 14: Improve AI to create village communities - - -License for Code ----------------- - -Copyright (C) 2016 Zorman2000 - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 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 General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . +Phase 14: Improve AI to create village communities \ No newline at end of file diff --git a/actions/actions.lua b/actions/actions.lua index 40d7a91..1b4f9c6 100644 --- a/actions/actions.lua +++ b/actions/actions.lua @@ -14,15 +14,25 @@ npc.actions = {} -- Describes actions with doors or openable nodes -npc.actions.door_action = { - OPEN = 1, - CLOSE = 2 -} - --- Describe the state of doors or openable nodes -npc.actions.door_state = { - OPEN = 1, - CLOSED = 2 +npc.actions.const = { + doors = { + action = { + OPEN = 1, + CLOSE = 2 + }, + state = { + OPEN = 1, + CLOSED = 2 + } + }, + beds = { + LAY = 1, + GET_UP = 2 + }, + sittable = { + SIT = 1, + GET_UP = 2 + } } function npc.actions.rotate(args) @@ -32,12 +42,20 @@ function npc.actions.rotate(args) self.rotate = 0 if dir == npc.direction.north then yaw = 0 + elseif dir == npc.direction.north_east then + yaw = (7 * math.pi) / 4 elseif dir == npc.direction.east then yaw = (3 * math.pi) / 2 + elseif dir == npc.direction.south_east then + yaw = (5 * math.pi) / 4 elseif dir == npc.direction.south then yaw = math.pi + elseif dir == npc.direction.south_west then + yaw = (3 * math.pi) / 4 elseif dir == npc.direction.west then yaw = math.pi / 2 + elseif dir == npc.direction.north_west then + yaw = math.pi / 4 end self.object:setyaw(yaw) end @@ -175,12 +193,35 @@ function npc.actions.take_item_from_external_inventory(args) return false end -function npc.actions.get_openable_node_state(node) - local state = npc.actions.door_state.CLOSED - local a_i1, a_i2 = string.find(node.name, "_a") - if a_i1 == nil then - state = npc.actions.door_state.OPEN +function npc.actions.check_external_inventory_contains_item(args) + local self = args.self + local player = args.player + local pos = args.pos + local inv_list = args.inv_list + local item_name = args.item_name + local count = args.count + local inv + if player ~= nil then + inv = minetest.get_inventory({type="player", name=player}) + else + inv = minetest.get_inventory({type="node", pos}) end + + -- Create ItemStack for checking the external inventory + local item = ItemStack(item_name.." "..count) + -- Check if inventory contains item + return inv:contains_item(inv_list, item) +end + +function npc.actions.get_openable_node_state(node) + minetest.log("Node name: "..dump(node.name)) + local state = npc.actions.const.doors.state.CLOSED + local a_i1, a_i2 = string.find(node.name, "_a") + local open_i1, open_i2 = string.find(node.name, "_close") + if a_i1 == nil and open_i1 == nil then + state = npc.actions.const.doors.state.OPEN + end + minetest.log("Door state: "..dump(state)) return state end @@ -231,7 +272,6 @@ function npc.actions.use_furnace(self, pos, item) item_name = npc.get_item_name(fuel_item.item_string), count = npc.get_item_count(fuel_item.item_string) } - minetest.log("Adding fuel action") npc.add_action(self, npc.actions.put_item_on_external_inventory, args) -- Put the item that we want to cook on the furnace args = { @@ -243,9 +283,14 @@ function npc.actions.use_furnace(self, pos, item) count = npc.get_item_count(src_item.item_string), is_furnace = true } - minetest.log("Adding src action") npc.add_action(self, npc.actions.put_item_on_external_inventory, args) + -- TODO: Need to add a way to calculate how many seconds will pass + -- until the furnace is done, or at least the items that we expect + -- to get (assume all items to be cooked are the ones ewe expect back) + -- Then, add that many stand actions, then an action to take the items. + + return true end end @@ -253,11 +298,6 @@ function npc.actions.use_furnace(self, pos, item) return false end -npc.actions.bed_action = { - LAY = 1, - GET_UP = 2 -} - -- This function makes the NPC lay or stand up from a bed. The -- pos is the location of the bed, action can be lay or get up function npc.actions.use_bed(self, pos, action) @@ -265,7 +305,7 @@ function npc.actions.use_bed(self, pos, action) minetest.log(dump(param2)) local dir = minetest.facedir_to_dir(param2.param2) - if action == npc.actions.bed_action.LAY then + if action == npc.actions.const.beds.LAY then -- Calculate position (from beds mod) local bed_pos = {x = pos.x + dir.x / 2, y = pos.y + 1, z = pos.z + dir.z / 2} -- Sit down on bed @@ -286,77 +326,44 @@ function npc.actions.use_bed(self, pos, action) end end +-- This function makes the NPC lay or stand up from a bed. The +-- pos is the location of the bed, action can be lay or get up +function npc.actions.use_sittable(self, pos, action) + local node = minetest.get_node(pos) --- This function can be used to make the NPC walk from one --- position to another. -function npc.actions.walk_to_pos(self, end_pos) - - local start_pos = self.object:getpos() - - -- Find path - local path = npc.actions.find_path({x=start_pos.x, y=start_pos.y-1, z=start_pos.z}, end_pos) - - if path ~= nil then - minetest.log("Found path to node: "..dump(end_pos)) - - -- Add a first step - local dir = npc.actions.get_direction(start_pos, path[1].pos) - npc.add_action(self, npc.actions.walk_step, {self = self, dir = dir}) - - -- Add subsequent steps - for i = 1, #path do - --minetest.log("Path: (i) "..dump(path[i])..": Path i+1 "..dump(path[i+1])) - -- Do not add an extra step - if i == #path then - -- Add direction to last node - local dir = npc.actions.get_direction(path[i].pos, end_pos) - -- Add stand animation at end - npc.add_action(self, npc.actions.stand, {self = self}) - -- Rotate to face the end node - npc.actions.rotate({self = self, dir = dir}) - break - end - -- Get direction to move from path[i] to path[i+1] - local dir = npc.actions.get_direction(path[i].pos, path[i+1].pos) - -- Check if next node is a door, if it is, open it, then walk - if path[i+1].type == "O" then - -- Check if door is already open - local node = minetest.get_node(path[i+1].pos) - if npc.actions.get_openable_node_state(node) == npc.actions.door_state.CLOSED then - -- Stop to open door, this avoids misplaced movements later on - npc.add_action(self, npc.actions.stand, {self = self}) - -- Open door - npc.add_action(self, npc.actions.use_door, {self=self, pos=path[i+1].pos, action=npc.actions.door_action.OPEN}) - end - end - -- Add walk action to action queue - npc.add_action(self, npc.actions.walk_step, {self = self, dir = dir}) + if action == npc.actions.const.sittable.SIT then + -- Calculate position depending on bench + -- For cottages bench (code taken from Sokomine's cottages mod): + local p2 = {x=pos.x, y=pos.y, z=pos.z}; + if not( node ) or node.param2 == 0 then + p2.z = p2.z+0.3; + elseif node.param2 == 1 then + p2.x = p2.x+0.3; + elseif node.param2 == 2 then + p2.z = p2.z-0.3; + elseif node.param2 == 3 then + p2.x = p2.x-0.3; end - end -end - - ---------------------------------------------------------------------------------------- --- Path-finding code ---------------------------------------------------------------------------------------- --- This is the limit to search for a path based on the goal node. --- If the path finder code goes beyond this limit in nodes away --- on the x or z plane, it will stop looking for a path -npc.actions.PATH_DIFF_LIMIT = 125 - --- Returns the opposite of a vector (scalar multiplication by -1) -local function vector_opposite(v) - return vector.multiply(v, -1) -end - --- Returns a unit direction vector based on the largest coordinate -local function get_unit_dir_vector_based_on_diff(v) - if math.abs(v.x) > math.abs(v.z) then - return {x=(v.x/math.abs(v.x)) * -1, y=0, z=0} - elseif math.abs(v.z) > math.abs(v.x) then - return {x=0, y=0, z=(v.z/math.abs(v.z)) * -1} - elseif math.abs(v.x) == math.abs(v.z) then - return {x=(v.x/math.abs(v.x)) * -1, y=0, z=0} + -- For stairs (based on the above code): + local p2 = {x=pos.x, y=pos.y, z=pos.z}; + if not( node ) or node.param2 == 0 then + p2.z = p2.z-0.2; + elseif node.param2 == 1 then + p2.x = p2.x-0.2; + elseif node.param2 == 2 then + p2.z = p2.z+0.2; + elseif node.param2 == 3 then + p2.x = p2.x+0.2; + end + -- Sit down on bench/chair/stairs + npc.add_action(self, npc.actions.sit, {self=self, pos=p2}) + -- Rotate to the correct position + npc.add_action(self, npc.actions.rotate, {self=self, dir=node.param2 + 2 % 4}) + else + -- Walk up from bed + npc.add_action(self, npc.actions.walk_step, {self=self, dir=param2.param2 + 2 % 4}) + -- Stand + npc.add_action(self, npc.actions.stand, {self=self}) end end @@ -379,184 +386,344 @@ function npc.actions.get_direction(v1, v2) end end --- This function is used to determine if a node is walkable --- or openable, in which case is good to use when finding a path -local function is_good_node(node) - -- Is openable is to support doors, fence gates and other - -- doors from other mods. Currently, default doors and gates - -- will be supported. Cottages doors should also be supported. - --minetest.log("Node name: "..dump(node.name)) - local is_openable = false - local start_i,end_i = string.find(node.name, "doors:") - is_openable = start_i ~= nil - --minetest.log("Is node openable: "..dump(is_openable)) - --minetest.log("Is node walkable: "..dump(not minetest.registered_nodes[node.name].walkable)) - if not minetest.registered_nodes[node.name].walkable then - return "W" - elseif is_openable then - return "O" +-- This function can be used to make the NPC walk from one +-- position to another. +function npc.actions.walk_to_pos(self, end_pos) + + local start_pos = self.object:getpos() + + -- Find path + local path = pathfinder.find_path(start_pos, end_pos, 20) + + if path ~= nil then + minetest.log("Found path to node: "..dump(end_pos)) + + -- Add a first step + --local dir = npc.actions.get_direction(start_pos, path[1].pos) + --minetest.log("Start_pos: "..dump(start_pos)..", First path step: "..dump(path[1].pos)) + --minetest.log("Direction: "..dump(dir)) + --npc.add_action(self, npc.actions.walk_step, {self = self, dir = dir}) + + -- Add subsequent steps + local door_opened = false + + for i = 1, #path do + --minetest.log("Path: (i) "..dump(path[i])..": Path i+1 "..dump(path[i+1])) + -- Do not add an extra step + if (i+1) == #path then + -- Add direction to last node + local dir = npc.actions.get_direction(path[i].pos, end_pos) + -- Add stand animation at end + npc.add_action(self, npc.actions.stand, {self = self}) + -- Rotate to face the end node + npc.actions.rotate({self = self, dir = dir}) + break + end + -- Get direction to move from path[i] to path[i+1] + local dir = npc.actions.get_direction(path[i].pos, path[i+1].pos) + -- Check if next node is a door, if it is, open it, then walk + if path[i+1].type == pathfinder.node_types.openable then + -- Check if door is already open + local node = minetest.get_node(path[i+1].pos) + if npc.actions.get_openable_node_state(node) == npc.actions.const.doors.state.CLOSED then + minetest.log("Opening action to open door") + -- Stop to open door, this avoids misplaced movements later on + npc.add_action(self, npc.actions.stand, {self = self}) + -- Open door + npc.add_action(self, npc.actions.use_door, {self=self, pos=path[i+1].pos, action=npc.actions.const.doors.action.OPEN}) + + door_opened = true + end + end + -- Add walk action to action queue + npc.add_action(self, npc.actions.walk_step, {self = self, dir = dir}) + + if door_opened then + -- Stop to close door, this avoids misplaced movements later on + npc.add_action(self, npc.actions.stand, {self = self}) + -- Close door + npc.add_action(self, npc.actions.use_door, {self=self, pos=path[i+1].pos, action=npc.actions.const.doors.action.CLOSE}) + + door_opened = false + end + + end else - return "N" + minetest.log("Unable to find path.") end end --- Finds paths ignoring vertical obstacles --- This function is recursive and attempts to move all the time on --- the direction that will definetely lead to the end position. -local function find_path_recursive(start_pos, end_pos, path_nodes, last_dir, last_good_dir) - --minetest.log("Start pos: "..dump(start_pos)) - -- Find difference. The purpose of this is to weigh movement, attempting - -- the largest difference first, or both if equal. - local diff = vector.subtract(start_pos, end_pos) +-- ATTENTION: +-- Old, deprecated, non-functional code below: +--------------------------------------------------------------------------------------- +-- Path-finding code +--------------------------------------------------------------------------------------- +-- This is the limit to search for a path based on the goal node. +-- If the path finder code goes beyond this limit in nodes away +-- on the x or z plane, it will stop looking for a path +-- npc.actions.PATH_DIFF_LIMIT = 125 - --minetest.log("Difference: "..dump(diff)) +-- -- Returns the opposite of a vector (scalar multiplication by -1) +-- local function vector_opposite(v) +-- return vector.multiply(v, -1) +-- end - -- End if difference is larger than max difference possible (limit) - if math.abs(diff.x) > npc.actions.PATH_DIFF_LIMIT - or math.abs(diff.z) > npc.actions.PATH_DIFF_LIMIT then - -- Cannot find feasable path - return nil - end - -- Determine direction to move - local dir_vector = get_unit_dir_vector_based_on_diff(diff) +-- -- Returns a unit direction vector based on the largest coordinate +-- local function get_unit_dir_vector_based_on_diff(v) +-- if math.abs(v.x) > math.abs(v.z) then +-- return {x=(v.x/math.abs(v.x)) * -1, y=0, z=0} +-- elseif math.abs(v.z) > math.abs(v.x) then +-- return {x=0, y=0, z=(v.z/math.abs(v.z)) * -1} +-- elseif math.abs(v.x) == math.abs(v.z) then +-- return {x=(v.x/math.abs(v.x)) * -1, y=0, z=(v.z/math.abs(v.z)) * -1} +-- end +-- end - --minetest.log("Direction vector: "..dump(dir_vector)) +-- -- This function is used to determine if a node is walkable +-- -- or openable, in which case is good to use when finding a path +-- local function is_good_node(node) +-- -- Is openable is to support doors, fence gates and other +-- -- doors from other mods. Currently, default doors and gates +-- -- will be supported. Cottages doors should also be supported. +-- --minetest.log("Node name: "..dump(node.name)) +-- local is_openable = false +-- local start_i,end_i = string.find(node.name, "doors:") +-- is_openable = start_i ~= nil +-- --minetest.log("Is node openable: "..dump(is_openable)) +-- --minetest.log("Is node walkable: "..dump(not minetest.registered_nodes[node.name].walkable)) +-- if not minetest.registered_nodes[node.name].walkable then +-- return "W" +-- elseif is_openable then +-- return "O" +-- else +-- return "N" +-- end +-- end - if last_good_dir ~= nil then - dir_vector = last_good_dir - end +-- -- Finds paths ignoring vertical obstacles +-- -- This function is recursive and attempts to move all the time on +-- -- the direction that will definetely lead to the end position. +-- local function find_path_recursive(start_pos, end_pos, path_nodes, last_dir, last_good_dir, last_good_try) +-- minetest.log("Start pos: "..dump(start_pos)) - -- Get next position based on direction - local next_pos = vector.add(start_pos, dir_vector) +-- -- Find difference. The purpose of this is to weigh movement, attempting +-- -- the largest difference first, or both if equal. +-- local diff = vector.subtract(start_pos, end_pos) - --minetest.log("Next pos: "..dump(next_pos)) +-- minetest.log("Difference: "..dump(diff)) - -- Check if next_pos is actually within one block from the - -- expected position. If so, finish - local diff_to_end = vector.subtract(next_pos, end_pos) - if math.abs(diff_to_end.x) < 1 and math.abs(diff_to_end.y) < 1 and math.abs(diff_to_end.z) < 1 then - --minetest.log("Diff to end: "..dump(diff_to_end)) - table.insert(path_nodes, {pos=next_pos, type="E"}) - minetest.log("Found path to end.") - return path_nodes - end - -- Check if movement is possible on the calculated direction - local next_node = minetest.get_node(next_pos) - -- If direction vector is opposite to the last dir, then do not attempt to walk into it - --minetest.log("Next node is walkable: "..dump(not minetest.registered_nodes[next_node.name].walkable)) - local attempted_to_go_opposite = false - if last_dir ~= nil and vector.equals(dir_vector, vector_opposite(last_dir)) then - attempted_to_go_opposite = true - --minetest.log("Last dir: "..dump(last_dir)) - --minetest.log("Calculated dir vector is the opposite of last dir: "..dump(vector.equals(dir_vector, vector_opposite(last_dir)))) - end +-- -- End if difference is larger than max difference possible (limit) +-- if math.abs(diff.x) > npc.actions.PATH_DIFF_LIMIT +-- or math.abs(diff.z) > npc.actions.PATH_DIFF_LIMIT then +-- minetest.log("Can't find feasable path.") +-- -- Cannot find feasable path +-- return nil +-- end +-- -- Determine direction to move +-- local dir_vector = get_unit_dir_vector_based_on_diff(diff) - local node_type = is_good_node(next_node) - if node_type ~= "N" and (not attempted_to_go_opposite) then - table.insert(path_nodes, {pos=next_pos, type=node_type}) - return find_path_recursive(next_pos, end_pos, path_nodes, nil, nil) - else - --minetest.log("------------ Second attempt ------------") +-- minetest.log("Direction vector: "..dump(dir_vector)) + +-- if last_dir ~= nil then +-- if last_good_try == 4 +-- or (dir_vector.x ~= 0 and dir_vector.z ~=0) +-- -- Attention: Hacks below! The magic number 3 could be just extremely wrong. +-- -- This is a terrible hack based on experimentations :( +-- or (dir_vector.x ~= 0 and last_dir.x == 0 and math.abs(diff.x) > math.abs(diff.z) and math.abs(diff.z) < 3) +-- or (dir_vector.z ~= 0 and last_dir.z == 0 and math.abs(diff.z) > math.abs(diff.x) and math.abs(diff.x) < 3) then +-- if last_dir.x ~= 0 and diff.x ~= 0 +-- or last_dir.z ~= 0 and diff.z ~= 0 then +-- minetest.log("Using last dir as direction vector: "..dump(last_dir)) +-- dir_vector = last_dir +-- end +-- end +-- end + +-- if last_good_dir ~= nil then +-- minetest.log("Using last good dir as direction vector: "..dump(last_good_dir)) +-- dir_vector = last_good_dir +-- end + +-- -- Get next position based on direction +-- local next_pos = vector.add(start_pos, dir_vector) + +-- minetest.log("Next pos: "..dump(next_pos)) + +-- -- Check if next_pos is actually within one block from the +-- -- expected position. If so, finish +-- local diff_to_end = vector.subtract(next_pos, end_pos) +-- if math.abs(diff_to_end.x) < 1 and math.abs(diff_to_end.y) < 1 and math.abs(diff_to_end.z) < 1 then +-- minetest.log("Diff to end: "..dump(diff_to_end)) +-- table.insert(path_nodes, {pos=next_pos, type="E"}) +-- minetest.log("Found path to end.") +-- return path_nodes +-- end +-- -- Check if movement is possible on the calculated direction +-- local next_node = minetest.get_node(next_pos) +-- -- If direction vector is opposite to the last dir, then do not attempt to walk into it +-- minetest.log("Next node is walkable: "..dump(not minetest.registered_nodes[next_node.name].walkable)) +-- local attempted_to_go_opposite = false +-- if last_dir ~= nil and vector.equals(dir_vector, vector_opposite(last_dir)) then +-- attempted_to_go_opposite = true +-- minetest.log("Last dir: "..dump(last_dir)) +-- minetest.log("Calculated dir vector is the opposite of last dir: "..dump(vector.equals(dir_vector, vector_opposite(last_dir)))) +-- end + +-- local node_type = is_good_node(next_node) +-- if node_type ~= "N" and (not attempted_to_go_opposite) then +-- table.insert(path_nodes, {pos=next_pos, type=node_type}) +-- return find_path_recursive(next_pos, end_pos, path_nodes, dir_vector, nil, 1) +-- else +-- minetest.log("------------ Second attempt ------------") - -- If not walkable, attempt turn into the other coordinate - -- Determine this coordinate based on what was the last calculated direction - -- that didn't needed correction (last good dir). If this doesn't exists (e.g. - -- there has been no correction for a while) then select the direction by - -- trying to shorten the distance between NPC and the end node. +-- -- If not walkable, attempt turn into the other coordinate +-- -- Determine this coordinate based on what was the last calculated direction +-- -- that didn't needed correction (last good dir). If this doesn't exists (e.g. +-- -- there has been no correction for a while) then select the direction by +-- -- trying to shorten the distance between NPC and the end node. - --minetest.log("Last known good dir: "..dump(last_good_dir)) - local step = 0 - if last_good_dir == nil then - -- Store the current direction vector as the last non-corrected - -- calculated direction - last_good_dir = dir_vector - -- Determine which direction to move - if dir_vector.x == 0 then - --minetest.log("Choosing x direction") - step = diff.x/math.abs(diff.x) * -1 - if diff.x == 0 then - if last_dir ~= nil then - step = last_dir.x - else - -- Set a default step to avoid locks - step = 1 - end - end - dir_vector = {x = step, y = 0, z = 0} - elseif dir_vector.z == 0 then - step = diff.z/math.abs(diff.z) * -1 - if diff.z == 0 then - if last_dir ~= nil then - step = last_dir.z - else - -- Set a default step to avoid locks - step = 1 - end - end - dir_vector = {x = 0, y = 0, z = step} - end - --minetest.log("Re-calculated dir vector: "..dump(dir_vector)) - next_pos = vector.add(start_pos, dir_vector) - else - dir_vector = last_good_dir - if dir_vector.x == 0 then - --minetest.log("Moving into x direction") - step = last_dir.x - elseif dir_vector.z == 0 then - --minetest.log("Moving into z direction") - step = last_dir.z - end - dir_vector = last_dir - next_pos = vector.add(start_pos, dir_vector) - end - -- Check if new node is walkable - next_node = minetest.get_node(next_pos) +-- minetest.log("Last known good dir: "..dump(last_good_dir)) +-- local step = 0 +-- if last_good_dir == nil then +-- -- Store the current direction vector as the last non-corrected +-- -- calculated direction +-- last_good_dir = dir_vector - --minetest.log("Next node is walkable: "..dump(not minetest.registered_nodes[next_node.name].walkable)) +-- -- Determine which direction to move +-- if dir_vector.x == 0 then +-- minetest.log("Choosing x direction") +-- step = diff.x/math.abs(diff.x) * -1 +-- if diff.x == 0 then +-- if last_dir ~= nil and last_dir.x ~= 0 then--and last_good_try == 2 then +-- step = last_dir.x +-- else +-- -- Set a default step to avoid locks +-- step = 1 +-- end +-- end +-- dir_vector = {x = step, y = 0, z = 0} +-- elseif dir_vector.z == 0 then +-- step = diff.z/math.abs(diff.z) * -1 +-- if diff.z == 0 then +-- if last_dir ~= nil and last_dir.z ~= 0 then -- and last_good_try == 2 then +-- step = last_dir.z +-- else +-- -- Set a default step to avoid locks +-- step = 1 +-- end +-- end +-- dir_vector = {x = 0, y = 0, z = step} +-- end +-- minetest.log("Re-calculated dir vector: "..dump(dir_vector)) +-- next_pos = vector.add(start_pos, dir_vector) +-- else +-- dir_vector = last_good_dir +-- if dir_vector.x == 0 then +-- minetest.log("Moving into x direction") +-- step = last_dir.x +-- elseif dir_vector.z == 0 then +-- minetest.log("Moving into z direction") +-- step = last_dir.z +-- end +-- dir_vector = last_dir +-- next_pos = vector.add(start_pos, dir_vector) +-- end - local node_type = is_good_node(next_node) - if node_type ~= "N" then - table.insert(path_nodes, {pos=next_pos, type=node_type}) - return find_path_recursive(next_pos, end_pos, path_nodes, dir_vector, last_good_dir) - else - last_good_dir = dir_vector - --minetest.log("------------ Third attempt ------------") +-- -- Check if new node is walkable +-- next_node = minetest.get_node(next_pos) - -- If not walkable, then try the next node by finding the original - -- direction vector, then choosing the opposite of that. - if dir_vector.x ~= 0 then - --minetest.log("Move into opposite z dir") - dir_vector = get_unit_dir_vector_based_on_diff(start_pos, diff) - vector.multiply(dir_vector, -1) - elseif dir_vector.z ~= 0 then - --minetest.log("Move into opposite x dir") - dir_vector = get_unit_dir_vector_based_on_diff(start_pos, diff) - vector.multiply(dir_vector, -1) - end - --minetest.log("New direction: "..dump(dir_vector)) +-- minetest.log("Next node is walkable: "..dump(not minetest.registered_nodes[next_node.name].walkable)) - next_pos = vector.add(start_pos, dir_vector) - --minetest.log("New next_pos: "..dump(next_pos)) - next_node = minetest.get_node(next_pos) - --minetest.log("Next node is walkable: "..dump(not minetest.registered_nodes[next_node.name].walkable)) - local node_type = is_good_node(next_node) - if node_type ~= "N" then - table.insert(path_nodes, {pos=next_pos, type=node_type}) - return find_path_recursive(next_pos, end_pos, path_nodes, dir_vector, last_good_dir) - else - -- Try to return back, opposite of last dir. For now return nil as this code - -- is not good enough to work correctly. - return nil - end - end - end +-- local node_type = is_good_node(next_node) +-- if node_type ~= "N" then +-- table.insert(path_nodes, {pos=next_pos, type=node_type}) +-- return find_path_recursive(next_pos, end_pos, path_nodes, dir_vector, last_good_dir, 2) +-- else -end +-- minetest.log("Last known good dir: "..dump(last_good_dir)) +-- -- Only pick the second attempt's dir if it was actually good (meaning, +-- -- it could step on that dir) +-- if last_good_try == 2 then +-- last_good_dir = dir_vector +-- end +-- minetest.log("------------ Third attempt ------------") --- Calls the recursive function to calculate the path -function npc.actions.find_path(start_pos, end_pos) - return find_path_recursive(start_pos, end_pos, {}, nil, nil) -end \ No newline at end of file +-- -- If not walkable, then try the next node by finding the original +-- -- direction vector, then choosing the opposite of that. + +-- minetest.log("Last dir: "..dump(last_dir)) +-- minetest.log("Last good try: "..dump(last_good_try)) +-- minetest.log("Last attempted direction: "..dump(dir_vector)) + +-- if vector.equals(last_good_dir, last_dir) then +-- -- Go opposite the direction of second attempt +-- minetest.log("Moving opposite of last attempted") +-- dir_vector = vector.multiply(dir_vector, -1) +-- else +-- minetest.log("Moving opposite of last good dir") +-- dir_vector = vector.multiply(last_good_dir, -1) +-- last_good_dir = last_dir +-- end + + +-- -- if last_good_try > 1 or vector.equals(last_good_dir, last_dir) then +-- -- if dir_vector.x ~= 0 then +-- -- minetest.log("Move into opposite z dir") +-- -- dir_vector = get_unit_dir_vector_based_on_diff(diff) +-- -- dir_vector = vector.multiply(dir_vector, -1) +-- -- elseif dir_vector.z ~= 0 then +-- -- minetest.log("Move into opposite x dir") +-- -- dir_vector = get_unit_dir_vector_based_on_diff(diff) +-- -- dir_vector = vector.multiply(dir_vector, -1) +-- -- end +-- -- else +-- -- minetest.log("Stuck in corner, try to move out of corner") +-- -- dir_vector = vector.multiply(last_good_dir, -1) +-- -- last_good_dir = last_dir +-- -- end +-- minetest.log("New direction: "..dump(dir_vector)) +-- minetest.log("New last good dir: "..dump(last_good_dir)) + +-- next_pos = vector.add(start_pos, dir_vector) +-- minetest.log("New next_pos: "..dump(next_pos)) +-- next_node = minetest.get_node(next_pos) +-- minetest.log("Next node is walkable: "..dump(not minetest.registered_nodes[next_node.name].walkable)) +-- local node_type = is_good_node(next_node) +-- if node_type ~= "N" then +-- table.insert(path_nodes, {pos=next_pos, type=node_type}) +-- return find_path_recursive(next_pos, end_pos, path_nodes, dir_vector, last_good_dir, 3) +-- else +-- -- Move into the opposite of last good dir +-- minetest.log("------------ Fourth attempt ------------") +-- minetest.log("Last known good dir: "..dump(old_last_good_dir)) + +-- local old_dir_vector = dir_vector +-- -- If not walkable, then try moving into the opposite of last good dir +-- dir_vector = vector.multiply(last_good_dir, -1) +-- minetest.log("New direction: "..dump(dir_vector)) + +-- next_pos = vector.add(start_pos, dir_vector) +-- minetest.log("New next_pos: "..dump(next_pos)) +-- next_node = minetest.get_node(next_pos) +-- minetest.log("Next node is walkable: "..dump(not minetest.registered_nodes[next_node.name].walkable)) +-- local node_type = is_good_node(next_node) +-- if node_type ~= "N" then +-- table.insert(path_nodes, {pos=next_pos, type=node_type}) +-- return find_path_recursive(next_pos, end_pos, path_nodes, dir_vector, old_dir_vector, 4) +-- else +-- minetest.log("Attempted to rotate 4 times, can't do anything else") +-- return nil +-- end +-- end +-- end +-- end + +-- end + +-- -- Calls the recursive function to calculate the path +-- function npc.actions.find_path(start_pos, end_pos) +-- return find_path_recursive(start_pos, end_pos, {}, nil, nil, 0) +-- end \ No newline at end of file diff --git a/actions/pathfinder.lua b/actions/pathfinder.lua new file mode 100644 index 0000000..b207bc3 --- /dev/null +++ b/actions/pathfinder.lua @@ -0,0 +1,247 @@ +-- Pathfinding code by Zorman2000 +--------------------------------------------------------------------------------------- +-- Pathfinding functionality +--------------------------------------------------------------------------------------- +-- This class contains functions that allows to map the 3D map of Minetest into +-- a 2D array (basically by ignoring the y coordinate for the moment being) in order +-- to use the A* pathfinding algorithm to find the shortest path from one node to +-- another. The A* algorithm implementation is in the external Jumper LUA library, +-- by Roland Yonaba (https://github.com/Yonaba/Jumper). +-- Mapping algorithm: transforms a Minetest map surface to a 2d grid. + +local path = minetest.get_modpath("advanced_npc") + +-- Below code for require is taken and slightly modified +-- from irc mod by Diego Martinez (kaeza) +-- https://github.com/minetest-mods/irc +-- Handle mod security if needed +local ie, req_ie = _G, minetest.request_insecure_environment +if req_ie then ie = req_ie() end +if not ie then + error("The Advances NPC mod requires access to insecure functions in ".. + "order to work. Please add the Advanced NPC mod to the ".. + "secure.trusted_mods setting or disable the mod.") +end + +-- Modify package path so that it can find the Jumper library files +ie.package.path = + path .. "/Jumper/?.lua;".. + ie.package.path + +-- Require the main files from Jumper +local Grid = ie.require("jumper.grid") +local Pathfinder = ie.require("jumper.pathfinder") + +pathfinder = {} + +pathfinder.node_types = { + start = 0, + goal = 1, + walkable = 2, + openable = 3, + non_walkable = 4 +} + +pathfinder.nodes = { + openable_prefix = { + "doors:", + "cottages:gate", + "cottages:half_door" + } +} + + +-- This function uses the mapping functions and the A* algorithm implementation +-- of the Jumper library to find a path from start_pos to end_pos. The range is +-- an extra amount of nodes to search in both the x and z coordinates. +function pathfinder.find_path(start_pos, end_pos, range) + -- Map the Minetest area to a 2D array + local map = pathfinder.create_map(start_pos, end_pos, range, {}) + -- Find start and end positions + local pos = pathfinder.find_start_and_end_pos(map) + -- Normalize the map + local normalized_map = pathfinder.normalize_map(map) + -- Create pathfinder object + local grid_object = Grid(normalized_map) + -- Define what is a walkable node + local walkable = 0 + + -- Pathfinder object using A* algorithm + local finder = Pathfinder(grid_object, 'ASTAR', walkable) + -- Set orthogonal mode meaning it will not move in diagonal directions + finder:setMode("ORTHOGONAL") + + -- Calculates the path, and its length + local path = finder:getPath(pos.start_pos.x, pos.start_pos.z, pos.end_pos.x, pos.end_pos.z) + + --minetest.log("Found path: "..dump(path)) + -- Pretty-printing the results + if path then + return pathfinder.get_path(map, path:nodes()) + end +end + +-- This function is used to determine if a node is walkable +-- or openable, in which case is good to use when finding a path +local function is_good_node(node, exceptions) + -- Is openable is to support doors, fence gates and other + -- doors from other mods. Currently, default doors, gates + -- and cottages doors are supported. + local is_openable = false + for _,node_prefix in pairs(pathfinder.nodes.openable_prefix) do + local start_i,end_i = string.find(node.name, node_prefix) + if start_i ~= nil then + is_openable = true + break + end + end + if not minetest.registered_nodes[node.name].walkable then + return pathfinder.node_types.walkable + elseif is_openable then + return pathfinder.node_types.openable + else + for i = 1, #exceptions do + if node.name == exceptions[i] then + return pathfinder.node_types.walkable + end + end + return pathfinder.node_types.non_walkable + end +end + +function pathfinder.create_map(start_pos, end_pos, extra_range, walkables) + + -- Unused, will not use voxel areas for now + --local c_air = minetest.get_content_id("air") + minetest.log("Start pos: "..dump(start_pos)) + minetest.log("End pos: "..dump(end_pos)) + + -- Calculate all signs to ensure: + -- 1. Correct area calculation + -- 2. Iterate in the correct direction + local start_x_sign = (start_pos.x - end_pos.x) / math.abs(start_pos.x - end_pos.x) + local start_z_sign = (start_pos.z - end_pos.z) / math.abs(start_pos.z - end_pos.z) + local end_x_sign = (end_pos.x - start_pos.x) / math.abs(end_pos.x - start_pos.x) + local end_z_sign = (end_pos.z - start_pos.z) / math.abs(end_pos.z - start_pos.z) + --minetest.log("Start x sign: "..dump(start_x_sign)..", end x sign: "..dump(end_x_sign)) + --minetest.log("End z sign: "..dump(start_z_sign)..", end z sign: "..dump(end_z_sign)) + + -- Get starting and ending positions, adding the extra nodes to the area + local pos1 = {x=start_pos.x + (extra_range * start_x_sign), y = start_pos.y - 1, z=start_pos.z + (extra_range * start_z_sign)} + local pos2 = {x=end_pos.x + (extra_range * end_x_sign), y = end_pos.y, z=end_pos.z + (extra_range * end_z_sign)} + --minetest.log("Pos 1: "..dump(pos1)) + --minetest.log("Pos 2: "..dump(pos2)) + + -- Get Voxel Area - Not used for the moment + -- local vm = minetest.get_voxel_manip() + -- local emin, emax = vm:read_from_map(pos1, pos2) + -- local area = VoxelArea:new({MinEdge=emin, MaxEdge=emax}) + -- local data = vm:get_data() + + local grid = {} + + -- Loop through the area and classify nodes + for z = 1, math.abs(pos1.z - pos2.z) do + local current_row = {} + for x = 1, math.abs(pos1.x - pos2.x) do + -- Calculate current position + local current_pos = {x=pos1.x + (x*end_x_sign), y=pos1.y, z=pos1.z + (z*end_z_sign)} + -- Check if this is the starting position + if current_pos.x == start_pos.x and current_pos.z == start_pos.z then + -- Is start position + table.insert(current_row, {pos=current_pos, type=pathfinder.node_types.start}) + elseif current_pos.x == end_pos.x and current_pos.z == end_pos.z then + -- Is ending position or goal position + table.insert(current_row, {pos=current_pos, type=pathfinder.node_types.goal}) + else + -- Check if node is walkable + local node = minetest.get_node(current_pos) + if node.name == "default:air" then + -- If air do no more checks + table.insert(current_row, {pos=current_pos, type=pathfinder.node_types.walkable}) + else + -- Check if it is of a walkable or openable type + table.insert(current_row, {pos=current_pos, type=is_good_node(node, walkables)}) + end + end + end + -- Insert the converted row into the grid + table.insert(grid, current_row) + end + + return grid +end + +-- Utility function to print the created map to the console. +-- Used for debug. +local function print_map(map) + for z,row in pairs(map) do + local row_string = "[" + for x,node in pairs(row) do + if node.type == 2 then + row_string = row_string.."- " + else + row_string = row_string..node.type.." " + end + -- Use the following if the coordinates are also needed + --row_string = row_string..node.type..": {"..node.pos.x..", "..node.pos.y..", "..node.pos.z.."}, " + end + row_string = row_string.."]" + print(row_string) + end +end + + +-- This function find the starting and ending points in the +-- map representation, and returns the coordinates in the map +-- for the pathfinding algorithm to use +function pathfinder.find_start_and_end_pos(map) + -- This is for debug + --print_map(map) + local result = {} + for z,row in pairs(map) do + for x,node in pairs(row) do + if node.type == pathfinder.node_types.start then + --minetest.log("Start node: "..dump(node)) + result["start_pos"] = {x=x, z=z} + elseif node.type == pathfinder.node_types.goal then + --minetest.log("End node: "..dump(node)) + result["end_pos"] = {x=x, z=z} + end + end + end + minetest.log("Found start and end positions: "..dump(result)) + return result +end + +-- This function transforms the grid into binary values +-- (0 walkable, 1 non-walkable) for the pathfinding algorithm. +function pathfinder.normalize_map(map) + local result = {} + for _,row in pairs(map) do + local result_row = {} + for _,node in pairs(row) do + if node.type ~= pathfinder.node_types.non_walkable then + table.insert(result_row, 0) + else + table.insert(result_row, 1) + end + end + table.insert(result, result_row) + end + return result +end + +-- This function returns an array of tables with to parameters: type and pos. +-- The position parameter is the actual coordinate on the Minetest map. The +-- type is the type of the node at the coordinate defined as pathfinder.node_types. +function pathfinder.get_path(map, path_nodes) + local result = {} + for node, count in path_nodes do + table.insert(result, map[node:getY()][node:getX()]) + -- For debug + --minetest.log("Node: "..dump(map[node:getY()][node:getX()])) + --print(('Step: %d - x: %d - y: %d'):format(count, node:getX(), node:getY())) + end + return result +end \ No newline at end of file diff --git a/actions/places.lua b/actions/places.lua index 6e62e6c..aa3b370 100644 --- a/actions/places.lua +++ b/actions/places.lua @@ -17,7 +17,7 @@ npc.places.nodes = { "beds:bed_bottom", "beds:fancy_bed_bottom" }, - CHAIRS = { + SITTABLE = { "cottages:bench" }, CHESTS = { diff --git a/backup/.gitignore b/backup/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/backup/actions-newest-working.lua.bkp b/backup/actions-newest-working.lua.bkp new file mode 100644 index 0000000..b05a181 --- /dev/null +++ b/backup/actions-newest-working.lua.bkp @@ -0,0 +1,628 @@ +-- Actions code for Advanced NPC by Zorman2000 +--------------------------------------------------------------------------------------- +-- Action functionality +--------------------------------------------------------------------------------------- +-- The NPCs will be able to perform five fundamental actions that will allow +-- for them to perform any other kind of interaction in the world. These +-- fundamental actions are: place a node, dig a node, put items on an inventory, +-- take items from an inventory, find a node closeby (radius 3) and +-- walk a step on specific direction. These actions will be set on an action queue. +-- The queue will have the specific steps, in order, for the NPC to be able to do +-- something (example, go to a specific place and put a chest there). The +-- fundamental actions are added to the action queue to make a complete task for the NPC. + +npc.actions = {} + +-- Describes actions with doors or openable nodes +npc.actions.door_action = { + OPEN = 1, + CLOSE = 2 +} + +-- Describe the state of doors or openable nodes +npc.actions.door_state = { + OPEN = 1, + CLOSED = 2 +} + +function npc.actions.rotate(args) + local self = args.self + local dir = args.dir + local yaw = 0 + self.rotate = 0 + if dir == npc.direction.north then + yaw = 0 + elseif dir == npc.direction.east then + yaw = (3 * math.pi) / 2 + elseif dir == npc.direction.south then + yaw = math.pi + elseif dir == npc.direction.west then + yaw = math.pi / 2 + end + self.object:setyaw(yaw) +end + +-- This function will make the NPC walk one step on a +-- specifc direction. One step means one node. It returns +-- true if it can move on that direction, and false if there is an obstacle +function npc.actions.walk_step(args) + local self = args.self + local dir = args.dir + local vel = {} + if dir == npc.direction.north then + vel = {x=0, y=0, z=0.98} + elseif dir == npc.direction.east then + vel = {x=0.98, y=0, z=0} + elseif dir == npc.direction.south then + vel = {x=0, y=0, z=-0.98} + elseif dir == npc.direction.west then + vel = {x=-0.98, y=0, z=0} + end + set_animation(self, "walk") + npc.actions.rotate({self=self, dir=dir}) + self.object:setvelocity(vel) +end + +-- This action makes the NPC stand and remain like that +function npc.actions.stand(args) + local self = args.self + -- Stop NPC + self.object:setvelocity({x=0, y=0, z=0}) + -- Set stand animation + set_animation(self, "stand") +end + +-- This action makes the NPC sit on the node where it is +function npc.actions.sit(args) + local self = args.self + local pos = args.pos + -- Stop NPC + self.object:setvelocity({x=0, y=0, z=0}) + -- If position give, set to that position + if pos ~= nil then + self.object:setpos(pos) + end + -- Set sit animation + self.object:set_animation({ + x = npc.ANIMATION_SIT_START, + y = npc.ANIMATION_SIT_END}, + self.animation.speed_normal, 0) +end + +-- This action makes the NPC lay on the node where it is +function npc.actions.lay(args) + local self = args.self + local pos = args.pos + -- Stop NPC + self.object:setvelocity({x=0, y=0, z=0}) + -- If position give, set to that position + if pos ~= nil then + self.object:setpos(pos) + end + -- Set sit animation + self.object:set_animation({ + x = npc.ANIMATION_LAY_START, + y = npc.ANIMATION_LAY_END}, + self.animation.speed_normal, 0) +end + +-- Inventory functions for players and for nodes +-- This function is a convenience function to make it easy to put +-- and get items from another inventory (be it a player inv or +-- a node inv) +function npc.actions.put_item_on_external_inventory(args) + local self = args.self + local player = args.player + local pos = args.pos + local inv_list = args.inv_list + local item_name = args.item_name + local count = args.count + local is_furnace = args.is_furnace + local inv + if player ~= nil then + inv = minetest.get_inventory({type="player", name=player}) + else + inv = minetest.get_inventory({type="node", pos=pos}) + end + + -- Create ItemStack to put on external inventory + local item = ItemStack(item_name.." "..count) + -- Check if there is enough room to add the item on external invenotry + if inv:room_for_item(inv_list, item) then + -- Take item from NPC's inventory + if npc.take_item_from_inventory_itemstring(self, item) then + -- NPC doesn't have item and/or specified quantity + return false + end + -- Add items to external inventory + inv:add_item(inv_list, item) + + -- If this is a furnace, start furnace timer + if is_furnace == true then + minetest.get_node_timer(pos):start(1.0) + end + + return true + end + -- Not able to put on external inventory + return false +end + +function npc.actions.take_item_from_external_inventory(args) + local self = args.self + local player = args.player + local pos = args.pos + local inv_list = args.inv_list + local item_name = args.item_name + local count = args.count + local inv + if player ~= nil then + inv = minetest.get_inventory({type="player", name=player}) + else + inv = minetest.get_inventory({type="node", pos}) + end + -- Create ItemSTack to take from external inventory + local item = ItemStack(item_name.." "..count) + -- Check if there is enough of the item to take + if inv:contains_item(inv_list, item) then + -- Add item to NPC's inventory + npc.add_item_to_inventory_itemstring(self, item) + -- Add items to external inventory + inv:remove_item(inv_list, item) + return true + end + -- Not able to put on external inventory + return false +end + +function npc.actions.get_openable_node_state(node) + local state = npc.actions.door_state.CLOSED + local a_i1, a_i2 = string.find(node.name, "_a") + if a_i1 == nil then + state = npc.actions.door_state.OPEN + end + return state +end + +-- This function is used to open or close doors from +-- that use the default doors mod +function npc.actions.use_door(args) + local self = args.self + local pos = args.pos + local action = args.action + local node = minetest.get_node(pos) + local state = npc.actions.get_openable_node_state(node) + + local clicker = self.object + if action ~= state then + minetest.registered_nodes[node.name].on_rightclick(pos, node, clicker, nil, nil) + end +end + + +--------------------------------------------------------------------------------------- +-- Tasks functionality +--------------------------------------------------------------------------------------- +-- Tasks are operations that require many actions to perform. Basic tasks, like +-- walking from one place to another, operating a furnace, storing or taking +-- items from a chest, are provided here. + +-- This function allows a NPC to use a furnace using only items from +-- its own inventory. Fuel is not provided. Once the furnace is finished +-- with the fuel items the NPC will take whatever was cooked and whatever +-- remained to cook. The function received the position of the furnace +-- to use, and the item to cook in furnace. Item is an itemstring +function npc.actions.use_furnace(self, pos, item) + -- Check if any item in the NPC inventory serve as fuel + -- For now, just use some specific items as fuels + local fuels = {"default:leaves", "default:tree", ""} + -- Check if NPC has a fuel item + for i = 1,2 do + local fuel_item = npc.inventory_contains(self, fuels[i]) + local src_item = npc.inventory_contains(self, item) + + if fuel_item ~= nil and src_item ~= nil then + -- Put this item on the fuel inventory list of the furnace + local args = { + self = self, + player = nil, + pos = pos, + inv_list = "fuel", + item_name = npc.get_item_name(fuel_item.item_string), + count = npc.get_item_count(fuel_item.item_string) + } + minetest.log("Adding fuel action") + npc.add_action(self, npc.actions.put_item_on_external_inventory, args) + -- Put the item that we want to cook on the furnace + args = { + self = self, + player = nil, + pos = pos, + inv_list = "src", + item_name = npc.get_item_name(src_item.item_string), + count = npc.get_item_count(src_item.item_string), + is_furnace = true + } + minetest.log("Adding src action") + npc.add_action(self, npc.actions.put_item_on_external_inventory, args) + + return true + end + end + -- Couldn't use the furnace due to lack of items + return false +end + +npc.actions.bed_action = { + LAY = 1, + GET_UP = 2 +} + +-- This function makes the NPC lay or stand up from a bed. The +-- pos is the location of the bed, action can be lay or get up +function npc.actions.use_bed(self, pos, action) + local param2 = minetest.get_node(pos) + minetest.log(dump(param2)) + local dir = minetest.facedir_to_dir(param2.param2) + + if action == npc.actions.bed_action.LAY then + -- Calculate position (from beds mod) + local bed_pos = {x = pos.x + dir.x / 2, y = pos.y + 1, z = pos.z + dir.z / 2} + -- Sit down on bed + npc.add_action(self, npc.actions.sit, {self=self}) + -- Rotate to the correct position + npc.add_action(self, npc.actions.rotate, {self=self, dir=param2.param2 + 2 % 4}) + -- Lay down + npc.add_action(self, npc.actions.lay, {self=self, pos=bed_pos}) + else + -- Calculate position to get up + local bed_pos = {x = pos.x, y = pos.y + 1, z = pos.z} + -- Sit up + npc.add_action(self, npc.actions.sit, {self=self, pos=bed_pos}) + -- Walk up from bed + npc.add_action(self, npc.actions.walk_step, {self=self, dir=param2.param2 + 2 % 4}) + -- Stand + npc.add_action(self, npc.actions.stand, {self=self}) + end +end + + +-- This function can be used to make the NPC walk from one +-- position to another. +function npc.actions.walk_to_pos(self, end_pos) + + local start_pos = self.object:getpos() + + -- Find path + local path = npc.actions.find_path({x=start_pos.x, y=start_pos.y-1, z=start_pos.z}, end_pos) + + if path ~= nil then + minetest.log("Found path to node: "..dump(end_pos)) + + -- Add a first step + local dir = npc.actions.get_direction(start_pos, path[1].pos) + npc.add_action(self, npc.actions.walk_step, {self = self, dir = dir}) + + -- Add subsequent steps + for i = 1, #path do + --minetest.log("Path: (i) "..dump(path[i])..": Path i+1 "..dump(path[i+1])) + -- Do not add an extra step + if i == #path then + -- Add direction to last node + local dir = npc.actions.get_direction(path[i].pos, end_pos) + -- Add stand animation at end + npc.add_action(self, npc.actions.stand, {self = self}) + -- Rotate to face the end node + npc.actions.rotate({self = self, dir = dir}) + break + end + -- Get direction to move from path[i] to path[i+1] + local dir = npc.actions.get_direction(path[i].pos, path[i+1].pos) + -- Check if next node is a door, if it is, open it, then walk + if path[i+1].type == "O" then + -- Check if door is already open + local node = minetest.get_node(path[i+1].pos) + if npc.actions.get_openable_node_state(node) == npc.actions.door_state.CLOSED then + -- Stop to open door, this avoids misplaced movements later on + npc.add_action(self, npc.actions.stand, {self = self}) + -- Open door + npc.add_action(self, npc.actions.use_door, {self=self, pos=path[i+1].pos, action=npc.actions.door_action.OPEN}) + end + end + -- Add walk action to action queue + npc.add_action(self, npc.actions.walk_step, {self = self, dir = dir}) + end + end +end + + +--------------------------------------------------------------------------------------- +-- Path-finding code +--------------------------------------------------------------------------------------- +-- This is the limit to search for a path based on the goal node. +-- If the path finder code goes beyond this limit in nodes away +-- on the x or z plane, it will stop looking for a path +npc.actions.PATH_DIFF_LIMIT = 125 + +-- Returns the opposite of a vector (scalar multiplication by -1) +local function vector_opposite(v) + return vector.multiply(v, -1) +end + +-- Returns a unit direction vector based on the largest coordinate +local function get_unit_dir_vector_based_on_diff(v) + if math.abs(v.x) > math.abs(v.z) then + return {x=(v.x/math.abs(v.x)) * -1, y=0, z=0} + elseif math.abs(v.z) > math.abs(v.x) then + return {x=0, y=0, z=(v.z/math.abs(v.z)) * -1} + elseif math.abs(v.x) == math.abs(v.z) then + return {x=(v.x/math.abs(v.x)) * -1, y=0, z=(v.z/math.abs(v.z)) * -1} + end +end + +-- This function returns the direction enum +-- for the moving from v1 to v2 +function npc.actions.get_direction(v1, v2) + local dir = vector.subtract(v2, v1) + if dir.x ~= 0 then + if dir.x > 0 then + return npc.direction.east + else + return npc.direction.west + end + elseif dir.z ~= 0 then + if dir.z > 0 then + return npc.direction.north + else + return npc.direction.south + end + end +end + +-- This function is used to determine if a node is walkable +-- or openable, in which case is good to use when finding a path +local function is_good_node(node) + -- Is openable is to support doors, fence gates and other + -- doors from other mods. Currently, default doors and gates + -- will be supported. Cottages doors should also be supported. + --minetest.log("Node name: "..dump(node.name)) + local is_openable = false + local start_i,end_i = string.find(node.name, "doors:") + is_openable = start_i ~= nil + --minetest.log("Is node openable: "..dump(is_openable)) + --minetest.log("Is node walkable: "..dump(not minetest.registered_nodes[node.name].walkable)) + if not minetest.registered_nodes[node.name].walkable then + return "W" + elseif is_openable then + return "O" + else + return "N" + end +end + +-- Finds paths ignoring vertical obstacles +-- This function is recursive and attempts to move all the time on +-- the direction that will definetely lead to the end position. +local function find_path_recursive(start_pos, end_pos, path_nodes, last_dir, last_good_dir, last_good_try) + minetest.log("Start pos: "..dump(start_pos)) + + -- Find difference. The purpose of this is to weigh movement, attempting + -- the largest difference first, or both if equal. + local diff = vector.subtract(start_pos, end_pos) + + minetest.log("Difference: "..dump(diff)) + + -- End if difference is larger than max difference possible (limit) + if math.abs(diff.x) > npc.actions.PATH_DIFF_LIMIT + or math.abs(diff.z) > npc.actions.PATH_DIFF_LIMIT then + minetest.log("Can't find feasable path.") + -- Cannot find feasable path + return nil + end + -- Determine direction to move + local dir_vector = get_unit_dir_vector_based_on_diff(diff) + + minetest.log("Direction vector: "..dump(dir_vector)) + + if last_dir ~= nil then + if last_good_try == 4 + or (dir_vector.x ~= 0 and dir_vector.z ~=0) + -- Attention: Hacks below! The magic number 3 could be just extremely wrong. + -- This is a terrible hack based on experimentations :( + or (dir_vector.x ~= 0 and last_dir.x == 0 and math.abs(diff.x) > math.abs(diff.z) and math.abs(diff.z) < 3) + or (dir_vector.z ~= 0 and last_dir.z == 0 and math.abs(diff.z) > math.abs(diff.x) and math.abs(diff.x) < 3) then + if last_dir.x ~= 0 and diff.x ~= 0 + or last_dir.z ~= 0 and diff.z ~= 0 then + minetest.log("Using last dir as direction vector: "..dump(last_dir)) + dir_vector = last_dir + end + end + end + + if last_good_dir ~= nil then + minetest.log("Using last good dir as direction vector: "..dump(last_good_dir)) + dir_vector = last_good_dir + end + + -- Get next position based on direction + local next_pos = vector.add(start_pos, dir_vector) + + minetest.log("Next pos: "..dump(next_pos)) + + -- Check if next_pos is actually within one block from the + -- expected position. If so, finish + local diff_to_end = vector.subtract(next_pos, end_pos) + if math.abs(diff_to_end.x) < 1 and math.abs(diff_to_end.y) < 1 and math.abs(diff_to_end.z) < 1 then + minetest.log("Diff to end: "..dump(diff_to_end)) + table.insert(path_nodes, {pos=next_pos, type="E"}) + minetest.log("Found path to end.") + return path_nodes + end + -- Check if movement is possible on the calculated direction + local next_node = minetest.get_node(next_pos) + -- If direction vector is opposite to the last dir, then do not attempt to walk into it + minetest.log("Next node is walkable: "..dump(not minetest.registered_nodes[next_node.name].walkable)) + local attempted_to_go_opposite = false + if last_dir ~= nil and vector.equals(dir_vector, vector_opposite(last_dir)) then + attempted_to_go_opposite = true + minetest.log("Last dir: "..dump(last_dir)) + minetest.log("Calculated dir vector is the opposite of last dir: "..dump(vector.equals(dir_vector, vector_opposite(last_dir)))) + end + + local node_type = is_good_node(next_node) + if node_type ~= "N" and (not attempted_to_go_opposite) then + table.insert(path_nodes, {pos=next_pos, type=node_type}) + return find_path_recursive(next_pos, end_pos, path_nodes, dir_vector, nil, 1) + else + minetest.log("------------ Second attempt ------------") + + -- If not walkable, attempt turn into the other coordinate + -- Determine this coordinate based on what was the last calculated direction + -- that didn't needed correction (last good dir). If this doesn't exists (e.g. + -- there has been no correction for a while) then select the direction by + -- trying to shorten the distance between NPC and the end node. + + + + minetest.log("Last known good dir: "..dump(last_good_dir)) + local step = 0 + if last_good_dir == nil then + -- Store the current direction vector as the last non-corrected + -- calculated direction + last_good_dir = dir_vector + + -- Determine which direction to move + if dir_vector.x == 0 then + minetest.log("Choosing x direction") + step = diff.x/math.abs(diff.x) * -1 + if diff.x == 0 then + if last_dir ~= nil and last_dir.x ~= 0 then--and last_good_try == 2 then + step = last_dir.x + else + -- Set a default step to avoid locks + step = 1 + end + end + dir_vector = {x = step, y = 0, z = 0} + elseif dir_vector.z == 0 then + step = diff.z/math.abs(diff.z) * -1 + if diff.z == 0 then + if last_dir ~= nil and last_dir.z ~= 0 then -- and last_good_try == 2 then + step = last_dir.z + else + -- Set a default step to avoid locks + step = 1 + end + end + dir_vector = {x = 0, y = 0, z = step} + end + minetest.log("Re-calculated dir vector: "..dump(dir_vector)) + next_pos = vector.add(start_pos, dir_vector) + else + dir_vector = last_good_dir + if dir_vector.x == 0 then + minetest.log("Moving into x direction") + step = last_dir.x + elseif dir_vector.z == 0 then + minetest.log("Moving into z direction") + step = last_dir.z + end + dir_vector = last_dir + next_pos = vector.add(start_pos, dir_vector) + end + + -- Check if new node is walkable + next_node = minetest.get_node(next_pos) + + minetest.log("Next node is walkable: "..dump(not minetest.registered_nodes[next_node.name].walkable)) + + local node_type = is_good_node(next_node) + if node_type ~= "N" then + table.insert(path_nodes, {pos=next_pos, type=node_type}) + return find_path_recursive(next_pos, end_pos, path_nodes, dir_vector, last_good_dir, 2) + else + + minetest.log("Last known good dir: "..dump(last_good_dir)) + -- Only pick the second attempt's dir if it was actually good (meaning, + -- it could step on that dir) + if last_good_try == 2 then + last_good_dir = dir_vector + end + minetest.log("------------ Third attempt ------------") + + -- If not walkable, then try the next node by finding the original + -- direction vector, then choosing the opposite of that. + + minetest.log("Last dir: "..dump(last_dir)) + minetest.log("Last good try: "..dump(last_good_try)) + minetest.log("Last attempted direction: "..dump(dir_vector)) + + if vector.equals(last_good_dir, last_dir) then + -- Go opposite the direction of second attempt + minetest.log("Moving opposite of last attempted") + dir_vector = vector.multiply(dir_vector, -1) + else + minetest.log("Moving opposite of last good dir") + dir_vector = vector.multiply(last_good_dir, -1) + last_good_dir = last_dir + end + + + -- if last_good_try > 1 or vector.equals(last_good_dir, last_dir) then + -- if dir_vector.x ~= 0 then + -- minetest.log("Move into opposite z dir") + -- dir_vector = get_unit_dir_vector_based_on_diff(diff) + -- dir_vector = vector.multiply(dir_vector, -1) + -- elseif dir_vector.z ~= 0 then + -- minetest.log("Move into opposite x dir") + -- dir_vector = get_unit_dir_vector_based_on_diff(diff) + -- dir_vector = vector.multiply(dir_vector, -1) + -- end + -- else + -- minetest.log("Stuck in corner, try to move out of corner") + -- dir_vector = vector.multiply(last_good_dir, -1) + -- last_good_dir = last_dir + -- end + minetest.log("New direction: "..dump(dir_vector)) + minetest.log("New last good dir: "..dump(last_good_dir)) + + next_pos = vector.add(start_pos, dir_vector) + minetest.log("New next_pos: "..dump(next_pos)) + next_node = minetest.get_node(next_pos) + minetest.log("Next node is walkable: "..dump(not minetest.registered_nodes[next_node.name].walkable)) + local node_type = is_good_node(next_node) + if node_type ~= "N" then + table.insert(path_nodes, {pos=next_pos, type=node_type}) + return find_path_recursive(next_pos, end_pos, path_nodes, dir_vector, last_good_dir, 3) + else + -- Move into the opposite of last good dir + minetest.log("------------ Fourth attempt ------------") + minetest.log("Last known good dir: "..dump(old_last_good_dir)) + + local old_dir_vector = dir_vector + -- If not walkable, then try moving into the opposite of last good dir + dir_vector = vector.multiply(last_good_dir, -1) + minetest.log("New direction: "..dump(dir_vector)) + + next_pos = vector.add(start_pos, dir_vector) + minetest.log("New next_pos: "..dump(next_pos)) + next_node = minetest.get_node(next_pos) + minetest.log("Next node is walkable: "..dump(not minetest.registered_nodes[next_node.name].walkable)) + local node_type = is_good_node(next_node) + if node_type ~= "N" then + table.insert(path_nodes, {pos=next_pos, type=node_type}) + return find_path_recursive(next_pos, end_pos, path_nodes, dir_vector, old_dir_vector, 4) + else + minetest.log("Attempted to rotate 4 times, can't do anything else") + return nil + end + end + end + end + +end + +-- Calls the recursive function to calculate the path +function npc.actions.find_path(start_pos, end_pos) + return find_path_recursive(start_pos, end_pos, {}, nil, nil, 0) +end \ No newline at end of file diff --git a/actions/actions-old.lua.bkp b/backup/actions-old.lua.bkp similarity index 100% rename from actions/actions-old.lua.bkp rename to backup/actions-old.lua.bkp diff --git a/debug.txt b/debug.txt new file mode 100644 index 0000000..73d4195 --- /dev/null +++ b/debug.txt @@ -0,0 +1,411240 @@ + + +------------- + Separator +------------- + +2016-12-30 11:39:47: ERROR[Main]: mod "village_canadian" has unsatisfied dependencies: "hdb" "nbu" +2016-12-30 11:39:47: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-12-30 11:39:47: [Main]: 3 +2016-12-30 11:39:52: ACTION[Main]: .__ __ __ +2016-12-30 11:39:52: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-12-30 11:39:52: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-12-30 11:39:52: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-12-30 11:39:52: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-12-30 11:39:52: ACTION[Main]: \/ \/ \/ \/ \/ +2016-12-30 11:39:52: ACTION[Main]: World at [/home/hfranqui/Development/minetest/bin/../worlds/NpcTest] +2016-12-30 11:39:52: ACTION[Main]: Server for gameid="minetest" listening on :::63112. +2016-12-30 11:39:54: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 11:39:54: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 11:39:54: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 11:39:54: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 11:39:54: ACTION[Server]: singleplayer [::ffff:127.0.0.1] joins game. +2016-12-30 11:39:54: ACTION[Server]: singleplayer joins game. List of players: singleplayer +2016-12-30 11:39:54: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 11:39:54: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 11:39:54: WARNING[Main]: Map::getNodeMetadata(): Block not found +2016-12-30 11:39:54: WARNING[Main]: Map::removeNodeMetadata(): Block not found +2016-12-30 11:40:20: ACTION[Server]: singleplayer places node default:dirt at (-6,27,441) +2016-12-30 11:40:23: ACTION[Server]: singleplayer places node default:dirt at (-6,27,440) +2016-12-30 11:40:23: ACTION[Server]: singleplayer places node default:dirt at (-6,27,439) +2016-12-30 11:40:24: ACTION[Server]: singleplayer places node default:dirt at (-6,27,438) +2016-12-30 11:40:24: ACTION[Server]: singleplayer places node default:dirt at (-7,27,438) +2016-12-30 11:40:26: ACTION[Server]: singleplayer places node default:dirt at (-6,27,437) +2016-12-30 11:40:27: ACTION[Server]: singleplayer digs default:dirt at (-7,27,438) +2016-12-30 11:40:44: ERROR[Main]: mod "village_canadian" has unsatisfied dependencies: "hdb" "nbu" +2016-12-30 11:40:44: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-12-30 11:40:44: [Main]: 5 +2016-12-30 11:40:49: ACTION[Main]: .__ __ __ +2016-12-30 11:40:49: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-12-30 11:40:49: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-12-30 11:40:49: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-12-30 11:40:49: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-12-30 11:40:49: ACTION[Main]: \/ \/ \/ \/ \/ +2016-12-30 11:40:49: ACTION[Main]: World at [/home/hfranqui/Development/minetest/bin/../worlds/NpcTest] +2016-12-30 11:40:49: ACTION[Main]: Server for gameid="minetest" listening on :::63248. +2016-12-30 11:40:51: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 11:40:51: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 11:40:51: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 11:40:51: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 11:40:51: ACTION[Server]: singleplayer [::ffff:127.0.0.1] joins game. +2016-12-30 11:40:51: ACTION[Server]: singleplayer joins game. List of players: singleplayer +2016-12-30 11:40:51: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 11:40:51: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 11:40:57: [Server]: Spawning new NPC: +2016-12-30 11:40:57: [Server]: Initial inventory: { + "flowers:geranium 3", + "default:iron_lump 9", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" +} +2016-12-30 11:40:57: [Server]: Found currency in inventory: { + { + name = "default:iron_lump", + count = 9 + } +} +2016-12-30 11:40:57: [Server]: Item: "flowers:geranium 3", name: "flowers:geranium" +2016-12-30 11:40:57: [Server]: { + { + y = 28, + x = -3, + z = 441 + }, + { + y = 28, + x = 0, + z = 441 + } +} +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 443 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 10, + z = 2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 443 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 442 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 10, + z = 1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 442 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Moving into z direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 441 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 10, + z = 0 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 9, + z = 0 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 8, + z = 0 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 4, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 441 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 7, + z = 0 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite x dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = 4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 7, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Moving into z direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 7, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Moving into z direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 7, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Moving into z direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 437 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 7, + z = -4 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 437 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 3, + z = 437 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 6, + z = -4 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 2, + z = 437 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 2, + z = 437 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 5, + z = -4 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 1, + z = 437 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 1, + z = 437 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 4, + z = -4 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 437 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 437 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 3, + z = -4 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 437 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -4 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite x dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Moving into z direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite z dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:57: WARNING[Server]: Undeclared global variable "old_last_good_dir" accessed at ...inetest/bin/../mods/advanced_npc/actions/actions.lua:576 +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite x dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Moving into z direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite z dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite x dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Moving into z direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite z dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite x dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Moving into z direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite z dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite x dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Moving into z direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite z dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite x dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Moving into z direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite z dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite x dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Moving into z direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite z dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite x dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Moving into z direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite z dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite x dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Moving into z direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite z dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite x dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Moving into z direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: Choosing x direction +2016-12-30 11:40:57: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Moving into x direction +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:57: [Server]: Move into opposite z dir +2016-12-30 11:40:57: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: false +2016-12-30 11:40:57: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:57: [Server]: Last known good dir: nil +2016-12-30 11:40:57: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:57: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:57: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:57: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:57: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:57: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:57: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite x dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Moving into z direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:58: [Server]: Move into opposite z dir +2016-12-30 11:40:58: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:58: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: nil +2016-12-30 11:40:58: [Server]: Choosing x direction +2016-12-30 11:40:58: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: false +2016-12-30 11:40:58: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:58: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:58: [Server]: Moving into x direction +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:58: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:58: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:58: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:58: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:58: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:58: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite z dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: ------------ Third attempt ------------ +2016-12-30 11:40:59: [Server]: Move into opposite x dir +2016-12-30 11:40:59: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Moving into z direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: nil +2016-12-30 11:40:59: [Server]: Choosing x direction +2016-12-30 11:40:59: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:40:59: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:40:59: [Server]: Next node is walkable: true +2016-12-30 11:40:59: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:40:59: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:40:59: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:40:59: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:40:59: [Server]: Next node is walkable: false +2016-12-30 11:40:59: [Server]: ------------ Second attempt ------------ +2016-12-30 11:40:59: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:40:59: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite x dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Moving into z direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Moving into x direction +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:00: [Server]: Move into opposite z dir +2016-12-30 11:41:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: false +2016-12-30 11:41:00: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:00: [Server]: Last known good dir: nil +2016-12-30 11:41:00: [Server]: Choosing x direction +2016-12-30 11:41:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:00: [Server]: Next node is walkable: true +2016-12-30 11:41:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Main]: INFO: signal_handler(): Ctrl-C pressed, shutting down. +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite x dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Moving into z direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:01: [Server]: Move into opposite z dir +2016-12-30 11:41:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: nil +2016-12-30 11:41:01: [Server]: Choosing x direction +2016-12-30 11:41:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:01: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Moving into x direction +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: true +2016-12-30 11:41:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:01: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:02: [Server]: Move into opposite x dir +2016-12-30 11:41:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Moving into z direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Choosing x direction +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:02: [Server]: Move into opposite z dir +2016-12-30 11:41:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Choosing x direction +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Choosing x direction +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:02: [Server]: Move into opposite x dir +2016-12-30 11:41:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Moving into z direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Choosing x direction +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:02: [Server]: Move into opposite z dir +2016-12-30 11:41:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Choosing x direction +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Choosing x direction +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:02: [Server]: Move into opposite x dir +2016-12-30 11:41:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Moving into z direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Choosing x direction +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:02: [Server]: Move into opposite z dir +2016-12-30 11:41:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Choosing x direction +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Choosing x direction +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:02: [Server]: Move into opposite x dir +2016-12-30 11:41:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Moving into z direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Choosing x direction +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:02: [Server]: Move into opposite z dir +2016-12-30 11:41:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Choosing x direction +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Choosing x direction +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:02: [Server]: Move into opposite x dir +2016-12-30 11:41:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Moving into z direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: nil +2016-12-30 11:41:02: [Server]: Choosing x direction +2016-12-30 11:41:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 11:41:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: true +2016-12-30 11:41:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 11:41:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 11:41:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 11:41:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: ------------ Second attempt ------------ +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: Moving into x direction +2016-12-30 11:41:02: [Server]: Next node is walkable: false +2016-12-30 11:41:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 11:41:02: [Server]: ------------ Third attempt ------------ +2016-12-30 11:41:02: [Server]: Move into opposite z dir + + +------------- + Separator +------------- + +2016-12-30 12:18:38: ERROR[Main]: mod "village_canadian" has unsatisfied dependencies: "hdb" "nbu" +2016-12-30 12:18:38: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-12-30 12:18:39: [Main]: 9 +2016-12-30 12:18:43: ACTION[Main]: .__ __ __ +2016-12-30 12:18:43: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-12-30 12:18:43: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-12-30 12:18:43: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-12-30 12:18:43: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-12-30 12:18:43: ACTION[Main]: \/ \/ \/ \/ \/ +2016-12-30 12:18:43: ACTION[Main]: World at [/home/hfranqui/Development/minetest/bin/../worlds/NpcTest] +2016-12-30 12:18:43: ACTION[Main]: Server for gameid="minetest" listening on :::49694. +2016-12-30 12:18:45: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:18:45: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:18:45: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:18:45: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:18:46: ACTION[Server]: singleplayer [::ffff:127.0.0.1] joins game. +2016-12-30 12:18:46: ACTION[Server]: singleplayer joins game. List of players: singleplayer +2016-12-30 12:18:46: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:18:46: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:19:43: ACTION[Server]: singleplayer clears all objects (quick mode). +2016-12-30 12:19:43: ACTION[Server]: Object clearing done. +2016-12-30 12:19:51: ERROR[Main]: mod "village_canadian" has unsatisfied dependencies: "hdb" "nbu" +2016-12-30 12:19:51: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-12-30 12:19:51: [Main]: 6 +2016-12-30 12:19:55: ACTION[Main]: .__ __ __ +2016-12-30 12:19:55: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-12-30 12:19:55: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-12-30 12:19:55: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-12-30 12:19:55: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-12-30 12:19:55: ACTION[Main]: \/ \/ \/ \/ \/ +2016-12-30 12:19:55: ACTION[Main]: World at [/home/hfranqui/Development/minetest/bin/../worlds/NpcTest] +2016-12-30 12:19:55: ACTION[Main]: Server for gameid="minetest" listening on :::64823. +2016-12-30 12:19:57: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:19:57: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:19:57: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:19:57: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:19:57: ACTION[Server]: singleplayer [::ffff:127.0.0.1] joins game. +2016-12-30 12:19:57: ACTION[Server]: singleplayer joins game. List of players: singleplayer +2016-12-30 12:19:58: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:19:58: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:19:58: WARNING[Main]: Map::getNodeMetadata(): Block not found +2016-12-30 12:19:58: WARNING[Main]: Map::removeNodeMetadata(): Block not found +2016-12-30 12:20:00: [Server]: Spawning new NPC: +2016-12-30 12:20:00: [Server]: Initial inventory: { + "default:sapling 4", + "farming:bread 3", + "default:iron_lump 5", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" +} +2016-12-30 12:20:00: [Server]: Found currency in inventory: { + { + name = "default:iron_lump", + count = 5 + } +} +2016-12-30 12:20:00: [Server]: Item: "default:sapling 4", name: "default:sapling" +2016-12-30 12:20:00: [Server]: { + { + y = 28, + x = -3, + z = 441 + }, + { + y = 28, + x = 0, + z = 441 + } +} +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 443 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 10, + z = 2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 443 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 442 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 10, + z = 1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 442 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 10, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 9, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 8, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 7, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 7, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 7, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 7, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 437 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 7, + z = -4 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 437 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 3, + z = 437 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 6, + z = -4 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 2, + z = 437 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 2, + z = 437 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 5, + z = -4 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 1, + z = 437 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 1, + z = 437 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 4, + z = -4 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 437 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 437 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -4 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 437 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -4 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: WARNING[Server]: Undeclared global variable "old_last_good_dir" accessed at ...inetest/bin/../mods/advanced_npc/actions/actions.lua:581 +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Moving into z direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Move into opposite z dir +2016-12-30 12:20:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Choosing x direction +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Moving into x direction +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: true +2016-12-30 12:20:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:00: [Server]: Last known good dir: nil +2016-12-30 12:20:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:00: [Server]: Next node is walkable: false +2016-12-30 12:20:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:00: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:00: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Moving into z direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Moving into x direction +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:01: [Server]: Move into opposite z dir +2016-12-30 12:20:01: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: false +2016-12-30 12:20:01: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:01: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:01: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:01: [Server]: Last known good dir: nil +2016-12-30 12:20:01: [Server]: Choosing x direction +2016-12-30 12:20:01: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Next node is walkable: true +2016-12-30 12:20:01: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:01: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:01: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:01: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Moving into z direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:02: [Server]: Move into opposite z dir +2016-12-30 12:20:02: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:02: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: nil +2016-12-30 12:20:02: [Server]: Choosing x direction +2016-12-30 12:20:02: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:02: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:02: [Server]: Next node is walkable: false +2016-12-30 12:20:02: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:02: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:02: [Server]: Moving into x direction +2016-12-30 12:20:02: [Server]: Next node is walkable: true +2016-12-30 12:20:02: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:02: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:02: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Move into opposite z dir +2016-12-30 12:20:03: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Choosing x direction +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Moving into x direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: nil +2016-12-30 12:20:03: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:03: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:03: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: false +2016-12-30 12:20:03: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:03: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Moving into z direction +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:03: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:03: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Next node is walkable: true +2016-12-30 12:20:03: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:03: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:03: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Main]: INFO: signal_handler(): Ctrl-C pressed, shutting down. +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Move into opposite z dir +2016-12-30 12:20:04: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Choosing x direction +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Moving into x direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: nil +2016-12-30 12:20:04: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: ------------ Third attempt ------------ +2016-12-30 12:20:04: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:20:04: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:20:04: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:20:04: [Server]: Next node is walkable: false +2016-12-30 12:20:04: [Server]: ------------ Second attempt ------------ +2016-12-30 12:20:04: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:20:04: [Server]: Moving into z direction +2016-12-30 12:20:04: [Server]: Next node is walkable: true +2016-12-30 12:20:04: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:20:04: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:20:04: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} + + +------------- + Separator +------------- + +2016-12-30 12:24:13: ERROR[Main]: mod "village_canadian" has unsatisfied dependencies: "hdb" "nbu" +2016-12-30 12:24:13: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-12-30 12:24:13: [Main]: 2 +2016-12-30 12:24:18: ACTION[Main]: .__ __ __ +2016-12-30 12:24:18: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-12-30 12:24:18: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-12-30 12:24:18: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-12-30 12:24:18: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-12-30 12:24:18: ACTION[Main]: \/ \/ \/ \/ \/ +2016-12-30 12:24:18: ACTION[Main]: World at [/home/hfranqui/Development/minetest/bin/../worlds/NpcTest] +2016-12-30 12:24:18: ACTION[Main]: Server for gameid="minetest" listening on :::58408. +2016-12-30 12:24:25: ERROR[Main]: mod "village_canadian" has unsatisfied dependencies: "hdb" "nbu" +2016-12-30 12:24:25: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-12-30 12:24:25: [Main]: 1 +2016-12-30 12:24:30: ACTION[Main]: .__ __ __ +2016-12-30 12:24:30: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-12-30 12:24:30: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-12-30 12:24:30: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-12-30 12:24:30: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-12-30 12:24:30: ACTION[Main]: \/ \/ \/ \/ \/ +2016-12-30 12:24:30: ACTION[Main]: World at [/home/hfranqui/Development/minetest/bin/../worlds/NpcTest] +2016-12-30 12:24:30: ACTION[Main]: Server for gameid="minetest" listening on :::64527. +2016-12-30 12:24:32: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:24:32: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:24:32: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:24:32: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:24:32: ACTION[Server]: singleplayer [::ffff:127.0.0.1] joins game. +2016-12-30 12:24:32: ACTION[Server]: singleplayer joins game. List of players: singleplayer +2016-12-30 12:24:32: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:24:32: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:24:32: WARNING[Main]: Map::getNodeMetadata(): Block not found +2016-12-30 12:24:32: WARNING[Main]: Map::removeNodeMetadata(): Block not found + + +------------- + Separator +------------- + +2016-12-30 12:39:30: ERROR[Main]: mod "village_canadian" has unsatisfied dependencies: "hdb" "nbu" +2016-12-30 12:39:30: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-12-30 12:39:30: [Main]: 7 +2016-12-30 12:39:35: ACTION[Main]: .__ __ __ +2016-12-30 12:39:35: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-12-30 12:39:35: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-12-30 12:39:35: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-12-30 12:39:35: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-12-30 12:39:35: ACTION[Main]: \/ \/ \/ \/ \/ +2016-12-30 12:39:35: ACTION[Main]: World at [/home/hfranqui/Development/minetest/bin/../worlds/NpcTest] +2016-12-30 12:39:35: ACTION[Main]: Server for gameid="minetest" listening on :::50755. +2016-12-30 12:39:37: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:39:37: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:39:37: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:39:37: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:39:37: ACTION[Server]: singleplayer [::ffff:127.0.0.1] joins game. +2016-12-30 12:39:37: ACTION[Server]: singleplayer joins game. List of players: singleplayer +2016-12-30 12:39:37: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:39:37: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:39:39: [Server]: Spawning new NPC: +2016-12-30 12:39:39: [Server]: Initial inventory: { + "farming:bread 3", + "default:apple 3", + "default:iron_lump 6", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" +} +2016-12-30 12:39:39: [Server]: { + { + y = 28, + x = -3, + z = 441 + }, + { + y = 28, + x = 0, + z = 441 + } +} +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 443 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 10, + z = 2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 443 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 442 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 10, + z = 1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 442 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 10, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 9, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 8, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 7, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 7, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 7, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 7, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 437 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 7, + z = -4 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 437 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 3, + z = 437 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 6, + z = -4 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 2, + z = 437 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 2, + z = 437 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 5, + z = -4 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 1, + z = 437 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 1, + z = 437 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 4, + z = -4 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 437 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 437 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -4 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 437 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -4 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: WARNING[Server]: Undeclared global variable "old_last_good_dir" accessed at ...inetest/bin/../mods/advanced_npc/actions/actions.lua:582 +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 1 +2016-12-30 12:39:39: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:39: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Moving into z direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: nil +2016-12-30 12:39:39: [Server]: Choosing x direction +2016-12-30 12:39:39: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:39: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: true +2016-12-30 12:39:39: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:39: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:39: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:39: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: Moving into x direction +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:39: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:39: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:39: [Server]: Last good try: 2 +2016-12-30 12:39:39: [Server]: Move into opposite z dir +2016-12-30 12:39:39: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:39: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:39: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 2 +2016-12-30 12:39:40: [Server]: Move into opposite z dir +2016-12-30 12:39:40: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Choosing x direction +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Moving into x direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: nil +2016-12-30 12:39:40: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:40: [Server]: Last good try: 1 +2016-12-30 12:39:40: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:40: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: false +2016-12-30 12:39:40: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:40: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:40: [Server]: Moving into z direction +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:40: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Next node is walkable: true +2016-12-30 12:39:40: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:40: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:40: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:40: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 1 +2016-12-30 12:39:41: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Moving into z direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:41: [Server]: Last good try: 2 +2016-12-30 12:39:41: [Server]: Move into opposite z dir +2016-12-30 12:39:41: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:41: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: nil +2016-12-30 12:39:41: [Server]: Choosing x direction +2016-12-30 12:39:41: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:41: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Moving into x direction +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: true +2016-12-30 12:39:41: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:41: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:41: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:41: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:41: [Server]: Next node is walkable: false +2016-12-30 12:39:41: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 1 +2016-12-30 12:39:42: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Moving into z direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Moving into x direction +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:42: [Server]: Last good try: 2 +2016-12-30 12:39:42: [Server]: Move into opposite z dir +2016-12-30 12:39:42: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:42: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:42: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:42: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:42: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:42: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: false +2016-12-30 12:39:42: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:42: [Server]: Last known good dir: nil +2016-12-30 12:39:42: [Server]: Choosing x direction +2016-12-30 12:39:42: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:42: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 1 +2016-12-30 12:39:43: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Moving into z direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:43: [Server]: Last good try: 2 +2016-12-30 12:39:43: [Server]: Move into opposite z dir +2016-12-30 12:39:43: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:43: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: nil +2016-12-30 12:39:43: [Server]: Choosing x direction +2016-12-30 12:39:43: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:43: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:43: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Moving into x direction +2016-12-30 12:39:43: [Server]: Next node is walkable: true +2016-12-30 12:39:43: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:43: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:43: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:43: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:43: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:43: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Moving into z direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 2 +2016-12-30 12:39:44: [Server]: Move into opposite z dir +2016-12-30 12:39:44: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Choosing x direction +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Moving into x direction +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:44: [Server]: Last known good dir: nil +2016-12-30 12:39:44: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:44: [Server]: Last good try: 1 +2016-12-30 12:39:44: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:44: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: true +2016-12-30 12:39:44: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:44: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:44: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:44: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:44: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:44: [Server]: Next node is walkable: false +2016-12-30 12:39:44: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Main]: INFO: signal_handler(): Ctrl-C pressed, shutting down. +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 1 +2016-12-30 12:39:45: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Moving into z direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: ------------ Third attempt ------------ +2016-12-30 12:39:45: [Server]: Last good try: 2 +2016-12-30 12:39:45: [Server]: Move into opposite z dir +2016-12-30 12:39:45: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:39:45: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: nil +2016-12-30 12:39:45: [Server]: Choosing x direction +2016-12-30 12:39:45: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:39:45: [Server]: Next node is walkable: false +2016-12-30 12:39:45: [Server]: ------------ Second attempt ------------ +2016-12-30 12:39:45: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:39:45: [Server]: Moving into x direction +2016-12-30 12:39:45: [Server]: Next node is walkable: true +2016-12-30 12:39:45: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:39:45: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:39:45: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:39:45: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:39:45: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} + + +------------- + Separator +------------- + +2016-12-30 12:44:50: ERROR[Main]: mod "village_canadian" has unsatisfied dependencies: "hdb" "nbu" +2016-12-30 12:44:50: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-12-30 12:44:50: [Main]: 2 +2016-12-30 12:44:55: ACTION[Main]: .__ __ __ +2016-12-30 12:44:55: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-12-30 12:44:55: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-12-30 12:44:55: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-12-30 12:44:55: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-12-30 12:44:55: ACTION[Main]: \/ \/ \/ \/ \/ +2016-12-30 12:44:55: ACTION[Main]: World at [/home/hfranqui/Development/minetest/bin/../worlds/NpcTest] +2016-12-30 12:44:55: ACTION[Main]: Server for gameid="minetest" listening on :::58100. +2016-12-30 12:44:57: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:44:57: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:44:57: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:44:57: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:44:57: ACTION[Server]: singleplayer [::ffff:127.0.0.1] joins game. +2016-12-30 12:44:57: ACTION[Server]: singleplayer joins game. List of players: singleplayer +2016-12-30 12:44:57: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:44:57: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:44:59: [Server]: Spawning new NPC: +2016-12-30 12:45:00: [Server]: Initial inventory: { + "default:apple 2", + "default:iron_lump 10", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" +} +2016-12-30 12:45:00: [Server]: Found currency in inventory: { + { + name = "default:iron_lump", + count = 10 + } +} +2016-12-30 12:45:00: [Server]: Item: "default:apple 2", name: "default:apple" +2016-12-30 12:45:00: [Server]: { + { + y = 28, + x = -3, + z = 441 + }, + { + y = 28, + x = 0, + z = 441 + } +} +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 443 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 10, + z = 2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 443 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 442 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 10, + z = 1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 442 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 10, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 9, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 8, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 7, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 7, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 7, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 7, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 437 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 7, + z = -4 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 437 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 3, + z = 437 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 6, + z = -4 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 2, + z = 437 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 2, + z = 437 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 5, + z = -4 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 1, + z = 437 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 1, + z = 437 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 4, + z = -4 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 437 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 437 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -4 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 437 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -4 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: WARNING[Server]: Undeclared global variable "old_last_good_dir" accessed at ...inetest/bin/../mods/advanced_npc/actions/actions.lua:582 +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Main]: INFO: signal_handler(): Ctrl-C pressed, shutting down. +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = 0, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 3, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = 0, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 2 +2016-12-30 12:45:00: [Server]: Move into opposite z dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = 0, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Fourth attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: New direction: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = -1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = -0, + x = -1, + z = -0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -1, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 2, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -1, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Last dir: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 438 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -3 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Moving into x direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 441 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = 0 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 441 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: ------------ Third attempt ------------ +2016-12-30 12:45:00: [Server]: Last good try: 1 +2016-12-30 12:45:00: [Server]: Move into opposite x dir +2016-12-30 12:45:00: [Server]: New direction: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: New next_pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 440 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -1 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Moving into z direction +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -5, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -2, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 1, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -4, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = -1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -3, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 0, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -3, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: nil +2016-12-30 12:45:00: [Server]: Choosing x direction +2016-12-30 12:45:00: [Server]: Re-calculated dir vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: true +2016-12-30 12:45:00: [Server]: Start pos: { + y = 27.5, + x = -2, + z = 439 +} +2016-12-30 12:45:00: [Server]: Difference: { + y = -0.5, + x = 1, + z = -2 +} +2016-12-30 12:45:00: [Server]: Direction vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:45:00: [Server]: Using last dir as direction vector: { + y = 0, + x = 1, + z = 0 +} +2016-12-30 12:45:00: [Server]: Next pos: { + y = 27.5, + x = -2, + z = 440 +} +2016-12-30 12:45:00: [Server]: Next node is walkable: false +2016-12-30 12:45:00: [Server]: ------------ Second attempt ------------ +2016-12-30 12:45:00: [Server]: Last known good dir: { + y = 0, + x = 0, + z = 1 +} + + +------------- + Separator +------------- + +2016-12-30 12:46:26: ERROR[Main]: mod "village_canadian" has unsatisfied dependencies: "hdb" "nbu" +2016-12-30 12:46:26: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-12-30 12:46:26: [Main]: 7 +2016-12-30 12:46:31: ACTION[Main]: .__ __ __ +2016-12-30 12:46:31: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-12-30 12:46:31: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-12-30 12:46:31: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-12-30 12:46:31: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-12-30 12:46:31: ACTION[Main]: \/ \/ \/ \/ \/ +2016-12-30 12:46:31: ACTION[Main]: World at [/home/hfranqui/Development/minetest/bin/../worlds/NpcTest] +2016-12-30 12:46:31: ACTION[Main]: Server for gameid="minetest" listening on :::49584. +2016-12-30 12:46:33: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:46:33: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:46:33: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:46:33: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:46:33: ACTION[Server]: singleplayer [::ffff:127.0.0.1] joins game. +2016-12-30 12:46:33: ACTION[Server]: singleplayer joins game. List of players: singleplayer +2016-12-30 12:46:33: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:46:33: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:46:35: [Server]: Spawning new NPC: +2016-12-30 12:46:35: [Server]: Initial inventory: { + "default:wood 3", + "farming:seed_wheat 2", + "default:iron_lump 8", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" +} +2016-12-30 12:46:35: [Server]: { + { + y = 28, + x = -3, + z = 441 + }, + { + y = 28, + x = 0, + z = 441 + } +} +2016-12-30 12:46:35: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 443 +} +2016-12-30 12:46:35: [Server]: Difference: { + y = -0.5, + x = 10, + z = 2 +} +2016-12-30 12:46:35: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:46:35: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 443 +} +2016-12-30 12:46:35: [Server]: Next node is walkable: false +2016-12-30 12:46:35: [Server]: ------------ Second attempt ------------ +2016-12-30 12:46:35: [Server]: Last known good dir: nil +2016-12-30 12:46:35: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:46:35: [Server]: Next node is walkable: true +2016-12-30 12:46:35: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 442 +} +2016-12-30 12:46:35: [Server]: Difference: { + y = -0.5, + x = 10, + z = 1 +} +2016-12-30 12:46:35: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:46:35: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:46:35: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 442 +} +2016-12-30 12:46:35: [Server]: Next node is walkable: false +2016-12-30 12:46:35: [Server]: ------------ Second attempt ------------ +2016-12-30 12:46:35: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:46:35: [Server]: Moving into z direction +2016-12-30 12:46:35: [Server]: Next node is walkable: true +2016-12-30 12:46:35: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 441 +} +2016-12-30 12:46:35: [Server]: Difference: { + y = -0.5, + x = 10, + z = 0 +} +2016-12-30 12:46:35: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:46:35: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 12:46:35: [Server]: Next node is walkable: true +2016-12-30 12:46:35: [Server]: Start pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 12:46:35: [Server]: Difference: { + y = -0.5, + x = 9, + z = 0 +} +2016-12-30 12:46:35: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:46:35: [Server]: Next pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:46:35: [Server]: Next node is walkable: true +2016-12-30 12:46:35: [Server]: Start pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:46:35: [Server]: Difference: { + y = -0.5, + x = 8, + z = 0 +} +2016-12-30 12:46:35: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:46:35: [Server]: Next pos: { + y = 27.5, + x = 4, + z = 441 +} +2016-12-30 12:46:35: [Server]: Next node is walkable: true +2016-12-30 12:46:35: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 441 +} +2016-12-30 12:46:35: [Server]: Difference: { + y = -0.5, + x = 7, + z = 0 +} +2016-12-30 12:46:35: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:46:35: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 441 +} +2016-12-30 12:46:35: [Server]: Next node is walkable: false +2016-12-30 12:46:35: [Server]: ------------ Second attempt ------------ +2016-12-30 12:46:35: [Server]: Last known good dir: nil +2016-12-30 12:46:35: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:46:35: [Server]: Next node is walkable: false +2016-12-30 12:46:35: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:46:35: [Server]: ------------ Third attempt ------------ +2016-12-30 12:46:35: [Server]: Last good try: 1 +2016-12-30 12:46:35: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:46:35: ERROR[Main]: ServerError: Lua: Runtime error from mod 'advanced_npc' in callback LuaABM::trigger(): ...evelopment/minetest/bin/../builtin/common/vector.lua:124: attempt to index local 'a' (a number value) +2016-12-30 12:46:35: ERROR[Main]: stack traceback: +2016-12-30 12:46:35: ERROR[Main]: ...evelopment/minetest/bin/../builtin/common/vector.lua:124: in function 'multiply' +2016-12-30 12:46:35: ERROR[Main]: ...inetest/bin/../mods/advanced_npc/actions/actions.lua:567: in function <...inetest/bin/../mods/advanced_npc/actions/actions.lua:406> +2016-12-30 12:46:35: ERROR[Main]: (tail call): ? +2016-12-30 12:46:35: ERROR[Main]: (tail call): ? +2016-12-30 12:46:35: ERROR[Main]: (tail call): ? +2016-12-30 12:46:35: ERROR[Main]: (tail call): ? +2016-12-30 12:46:35: ERROR[Main]: (tail call): ? +2016-12-30 12:46:35: ERROR[Main]: (tail call): ? +2016-12-30 12:46:35: ERROR[Main]: ...inetest/bin/../mods/advanced_npc/actions/actions.lua:297: in function 'walk_to_pos' +2016-12-30 12:46:35: ERROR[Main]: ...evelopment/minetest/bin/../mods/advanced_npc/npc.lua:354: in function 'on_spawn' +2016-12-30 12:46:35: ERROR[Main]: ...i/Development/minetest/bin/../mods/mobs_redo/api.lua:2610: in function <...i/Development/minetest/bin/../mods/mobs_redo/api.lua:2516> +2016-12-30 12:46:35: ACTION[Server]: singleplayer leaves game. List of players: +2016-12-30 12:46:35: ERROR[Main]: Some exception: "Runtime error from mod 'advanced_npc' in callback luaentity_GetStaticdata(): ...lopment/minetest/bin/../builtin/common/serialize.lua:151: Can't serialize data of type userdata +2016-12-30 12:46:35: ERROR[Main]: stack traceback: +2016-12-30 12:46:35: ERROR[Main]: [C]: in function 'error' +2016-12-30 12:46:35: ERROR[Main]: ...lopment/minetest/bin/../builtin/common/serialize.lua:151: in function <...lopment/minetest/bin/../builtin/common/serialize.lua:115> +2016-12-30 12:46:35: ERROR[Main]: (tail call): ? +2016-12-30 12:46:35: ERROR[Main]: ...lopment/minetest/bin/../builtin/common/serialize.lua:146: in function 'dump_val' +2016-12-30 12:46:35: ERROR[Main]: ...lopment/minetest/bin/../builtin/common/serialize.lua:103: in function 'dump_or_ref_val' +2016-12-30 12:46:35: ERROR[Main]: ...lopment/minetest/bin/../builtin/common/serialize.lua:146: in function <...lopment/minetest/bin/../builtin/common/serialize.lua:115> +2016-12-30 12:46:35: ERROR[Main]: (tail call): ? +2016-12-30 12:46:35: ERROR[Main]: ...lopment/minetest/bin/../builtin/common/serialize.lua:146: in function <...lopment/minetest/bin/../builtin/common/serialize.lua:115> +2016-12-30 12:46:35: ERROR[Main]: (tail call): ? +2016-12-30 12:46:35: ERROR[Main]: ...lopment/minetest/bin/../builtin/common/serialize.lua:138: in function <...lopment/minetest/bin/../builtin/common/serialize.lua:115> +2016-12-30 12:46:35: ERROR[Main]: (tail call): ? +2016-12-30 12:46:35: ERROR[Main]: ...lopment/minetest/bin/../builtin/common/serialize.lua:146: in function 'dump_val' +2016-12-30 12:46:35: ERROR[Main]: ...lopment/minetest/bin/../builtin/common/serialize.lua:103: in function 'dump_or_ref_val' +2016-12-30 12:46:35: ERROR[Main]: ...lopment/minetest/bin/../builtin/common/serialize.lua:146: in function <...lopment/minetest/bin/../builtin/common/serialize.lua:115> +2016-12-30 12:46:35: ERROR[Main]: (tail call): ? +2016-12-30 12:46:35: ERROR[Main]: ...lopment/minetest/bin/../builtin/common/serialize.lua:166: in function <...lopment/minetest/bin/../builtin/common/serialize.lua:20> +2016-12-30 12:46:35: ERROR[Main]: (tail call): ?" +2016-12-30 12:47:16: [Main]: INFO: signal_handler(): Ctrl-C pressed, shutting down. + + +------------- + Separator +------------- + +2016-12-30 12:47:23: ERROR[Main]: mod "village_canadian" has unsatisfied dependencies: "hdb" "nbu" +2016-12-30 12:47:23: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition +2016-12-30 12:47:23: [Main]: 9 +2016-12-30 12:47:28: ACTION[Main]: .__ __ __ +2016-12-30 12:47:28: ACTION[Main]: _____ |__| ____ _____/ |_ ____ _______/ |_ +2016-12-30 12:47:28: ACTION[Main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\ +2016-12-30 12:47:28: ACTION[Main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | | +2016-12-30 12:47:28: ACTION[Main]: |__|_| /__|___| /\___ >__| \___ >____ > |__| +2016-12-30 12:47:28: ACTION[Main]: \/ \/ \/ \/ \/ +2016-12-30 12:47:28: ACTION[Main]: World at [/home/hfranqui/Development/minetest/bin/../worlds/NpcTest] +2016-12-30 12:47:28: ACTION[Main]: Server for gameid="minetest" listening on :::65311. +2016-12-30 12:47:30: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:47:30: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:47:30: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:47:30: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:47:30: ACTION[Server]: singleplayer [::ffff:127.0.0.1] joins game. +2016-12-30 12:47:30: ACTION[Server]: singleplayer joins game. List of players: singleplayer +2016-12-30 12:47:30: ERROR[Main]: generateImage(): Could not load image "handle_schematics_support.png" while building texture +2016-12-30 12:47:30: ERROR[Main]: generateImage(): Creating a dummy image for "handle_schematics_support.png" +2016-12-30 12:47:32: [Server]: Spawning new NPC: +2016-12-30 12:47:32: [Server]: Initial inventory: { + "mobs:meat_raw 3", + "default:iron_lump 6", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" +} +2016-12-30 12:47:32: [Server]: { + { + y = 28, + x = -3, + z = 441 + }, + { + y = 28, + x = 0, + z = 441 + } +} +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 443 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 10, + z = 2 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 443 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: false +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: nil +2016-12-30 12:47:32: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 442 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 10, + z = 1 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 442 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: false +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 10, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 9, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 8, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 4, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 7, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: false +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: nil +2016-12-30 12:47:32: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: false +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: ------------ Third attempt ------------ +2016-12-30 12:47:32: [Server]: Last good try: 1 +2016-12-30 12:47:32: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:47:32: [Server]: New direction: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: New next_pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 8, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 4, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 9, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 10, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 8, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 11, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 7, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 9, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 12, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 8, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 10, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 13, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 9, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 11, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 14, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 10, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 12, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 15, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 11, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 13, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 16, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 12, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 14, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 17, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 13, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 15, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 18, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 14, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 16, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 19, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 15, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 17, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 20, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 16, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 18, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 21, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 17, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 19, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 22, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 18, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 20, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 23, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 19, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 21, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 24, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 20, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 22, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 25, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 21, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 23, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 26, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 22, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 24, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 27, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 23, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 25, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 28, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 24, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 26, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 29, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 25, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 27, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 30, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 26, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 28, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 31, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 27, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 29, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 32, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 28, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 30, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 33, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 29, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 31, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 34, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 30, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 32, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 35, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 31, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 33, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 36, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 32, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 34, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 37, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 33, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 35, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 38, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 34, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 36, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 39, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 35, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 37, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 40, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 36, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 38, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 41, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 37, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 39, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 42, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 38, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 40, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 43, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 39, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 41, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 44, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 40, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 42, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 45, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 41, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 43, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 46, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 42, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 44, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 47, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 43, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 45, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 48, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 44, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 46, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 49, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 45, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 47, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 50, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 46, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 48, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 51, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 47, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 49, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 52, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 48, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 50, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 53, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 49, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 51, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 54, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 50, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 52, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 55, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 51, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 53, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 56, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 52, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 54, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 57, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 53, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 55, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 58, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 54, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 56, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 59, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 55, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 57, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 60, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 56, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 58, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 61, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 57, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 59, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 62, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 58, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 60, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 63, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 59, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 61, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 64, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 60, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 62, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 65, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 61, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 63, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 66, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 62, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 64, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 67, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 63, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 65, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 68, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 64, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 66, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 69, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 65, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 67, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 70, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 66, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 68, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 71, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 67, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 69, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 72, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 68, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 70, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 73, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 69, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 71, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 74, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 70, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 72, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 75, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 71, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 73, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 76, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 72, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 74, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 77, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 73, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 75, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 78, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 74, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 76, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 79, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 75, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 77, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 80, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 76, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 78, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 81, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 77, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 79, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 82, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 78, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 80, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 83, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 79, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 81, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 84, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 80, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 82, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 85, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 81, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 83, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 86, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 82, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 84, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 87, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 83, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 85, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 88, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 84, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 86, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 89, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 85, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 87, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 90, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 86, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 88, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 91, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 87, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 89, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 92, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 88, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 90, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 93, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 89, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 91, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 94, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 90, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 92, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 95, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 91, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 93, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 96, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 92, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 94, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 97, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 93, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 95, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 98, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 94, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 96, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 99, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 95, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 97, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 100, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 96, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 98, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 101, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 97, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 99, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 102, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 98, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 100, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 103, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 99, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 101, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 104, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 100, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 102, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 105, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 101, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 103, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 106, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 102, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 104, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 107, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 103, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 105, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 108, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 104, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 106, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 109, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 105, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 107, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 110, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 106, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 108, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 111, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 107, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 109, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 112, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 108, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 110, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 113, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 109, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 111, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 114, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 110, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 112, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 115, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 111, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 113, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 116, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 112, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 114, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 117, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 113, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 115, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 118, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 114, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 116, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 119, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 115, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 117, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 120, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 116, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 118, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 121, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 117, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 119, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 122, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 118, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 120, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 123, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 119, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 121, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 124, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 120, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 122, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 125, + z = 0 +} +2016-12-30 12:47:32: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Next pos: { + y = 27.5, + x = 121, + z = 441 +} +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:47:32: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:47:32: [Server]: ------------ Second attempt ------------ +2016-12-30 12:47:32: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:47:32: [Server]: Moving into z direction +2016-12-30 12:47:32: [Server]: Next node is walkable: true +2016-12-30 12:47:32: [Server]: Start pos: { + y = 27.5, + x = 123, + z = 441 +} +2016-12-30 12:47:32: [Server]: Difference: { + y = -0.5, + x = 126, + z = 0 +} +2016-12-30 12:47:32: [Server]: Can't find feasable path. +2016-12-30 12:47:32: [Server]: { + param1 = 187, + name = "beds:bed_bottom", + param2 = 0 +} +2016-12-30 12:47:32: [Server]: { + param1 = 187, + name = "beds:bed_bottom", + param2 = 0 +} +2016-12-30 12:47:32: [Server]: { + inventory = { + "mobs:meat_raw 3", + "default:iron_lump 6", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + }, + path = { + stuck_timer = 0, + stuck = false, + following = false, + lastpos = { + y = 0, + x = 0, + z = 0 + }, + way = { + + } + }, + nametag = "", + dialogues = { + normal = { + { + text = "How are you doing?" + }, + { + text = "Hello there!" + }, + { + responses = { + { + action = , + dialogue_id = 6, + text = "No, never before", + action_type = "function", + response_id = 1 + }, + { + text = "Yes, sure", + action_type = "dialogue", + action = { + text = "It's so beautiful, and big, and large, and infinite, and..." + } + }, + { + text = "Of course! And to all the seas in the world!", + action_type = "dialogue", + action = { + text = "Awww you are no fun then! Go on then know-it-all!" + } + } + }, + text = "Hello! Have you been to the sea?" + }, + { + responses = { + { + action = , + dialogue_id = 6, + text = "No, never before", + action_type = "function", + response_id = 1 + }, + { + text = "Yes, sure", + action_type = "dialogue", + action = { + text = "It's so beautiful, and big, and large, and infinite, and..." + } + }, + { + text = "Of course! And to all the seas in the world!", + action_type = "dialogue", + action = { + text = "Awww you are no fun then! Go on then know-it-all!" + } + } + }, + text = "Hello! Have you been to the sea?" + } + }, + hints = { + { + text = "I would like to have some cotton plants around" + }, + { + text = "I really would like an apple tree close by." + }, + { + text = "Why would someone want a stone?" + }, + { + text = "Why would someone want a stone?" + } + } + }, + base_size = { + y = 1, + x = 1 + }, + base_texture = { + "mobs_npc_female1.png" + }, + visual_size = { + y = 1, + x = 1 + }, + relationships = { + + }, + standing_in = "", + remove_ok = true, + mesh = "character.b3d", + freeze = true, + textures = { + "mobs_npc_female1.png" + }, + places_map = { + + }, + actions = { + action_timer = 0, + action_interval = 1, + queue = { + { + action = , + args = { + self = + } + }, + { + action = , + args = { + self = + } + }, + { + action = , + args = { + self = , + dir = 2 + } + }, + { + action = , + args = { + self = , + pos = { + y = 29, + x = -3, + z = 441.5 + } + } + }, + { + action = , + args = { + self = + } + }, + { + action = , + args = { + self = + } + }, + { + action = , + args = { + self = + } + }, + { + action = , + args = { + self = + } + }, + { + action = , + args = { + self = , + pos = { + y = 29, + x = -3, + z = 441 + } + } + }, + { + action = , + args = { + self = , + dir = 2 + } + }, + { + action = , + args = { + self = + } + } + } + }, + collisionbox = { + -0.2, + -1, + -0.2, + 0.2, + 0.8, + 0.2 + }, + npc_id = "5344:", + can_have_relationship = true, + gift_data = { + favorite_items = { + fav2 = "default:sapling", + fav1 = "farming:seed_cotton" + }, + disliked_items = { + dis1 = "default:stone", + dis2 = "default:stone" + } + }, + sex = "female", + state = "stand", + trader_data = { + trader_status = "trader", + change_offers_timer = 0, + sell_offers = { + + }, + change_offers_timer_interval = 60, + buy_offers = { + + } + }, + object = , + base_mesh = "character.b3d", + health = 14, + old_health = 14, + old_y = 28.5, + base_colbox = { + -0.2, + -1, + -0.2, + 0.2, + 0.8, + 0.2 + } +} +2016-12-30 12:47:33: [Server]: Executing action +2016-12-30 12:47:34: [Server]: Executing action +2016-12-30 12:47:35: [Server]: Executing action +2016-12-30 12:47:36: [Server]: Executing action +2016-12-30 12:47:37: [Server]: Executing action +2016-12-30 12:47:38: [Server]: Executing action +2016-12-30 12:47:39: [Server]: Executing action +2016-12-30 12:47:40: [Server]: Executing action +2016-12-30 12:47:41: ACTION[Server]: singleplayer sets time to 6000 +2016-12-30 12:47:41: [Server]: Executing action +2016-12-30 12:47:42: [Server]: Executing action +2016-12-30 12:47:43: [Server]: Executing action +2016-12-30 12:48:15: ACTION[Server]: CHAT: clearobjects quick +2016-12-30 12:48:41: ACTION[Server]: singleplayer clears all objects (quick mode). +2016-12-30 12:48:41: ACTION[Server]: Object clearing done. +2016-12-30 12:48:52: [Server]: Spawning new NPC: +2016-12-30 12:48:52: [Server]: Initial inventory: { + "farming:bread 2", + "mobs:leather 1", + "default:iron_lump 8", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" +} +2016-12-30 12:48:52: [Server]: { + { + y = 28, + x = -3, + z = 441 + }, + { + y = 28, + x = 0, + z = 441 + } +} +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 443 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 10, + z = 2 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 443 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: false +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: nil +2016-12-30 12:48:52: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 442 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 10, + z = 1 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Using last dir as direction vector: { + y = 0, + x = 0, + z = -1 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 442 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: false +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 10, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 9, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 8, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 4, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 4, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 7, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 3, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: false +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: nil +2016-12-30 12:48:52: [Server]: Re-calculated dir vector: { + y = 0, + x = 0, + z = 1 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: false +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: ------------ Third attempt ------------ +2016-12-30 12:48:52: [Server]: Last good try: 1 +2016-12-30 12:48:52: [Server]: Stuck in corner, try to move out of corner +2016-12-30 12:48:52: [Server]: New direction: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: New next_pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 8, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 4, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 9, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 5, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 7, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 10, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 6, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 8, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 11, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 7, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 9, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 12, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 8, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 10, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 13, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 9, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 11, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 14, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 10, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 12, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 15, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 11, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 13, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 16, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 12, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 14, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 17, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 13, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 15, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 18, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 14, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 16, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 19, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 15, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 17, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 20, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 16, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 18, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 21, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 17, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 19, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 22, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 18, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 20, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 23, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 19, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 21, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 24, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 20, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 22, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 25, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 21, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 23, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 26, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 22, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 24, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 27, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 23, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 25, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 28, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 24, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 26, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 29, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 25, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 27, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 30, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 26, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 28, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 31, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 27, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 29, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 32, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 28, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 30, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 33, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 29, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 31, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 34, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 30, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 32, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 35, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 31, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 33, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 36, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 32, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 34, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 37, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 33, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 35, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 38, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 34, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 36, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 39, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 35, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 37, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 40, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 36, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 38, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 41, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 37, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 39, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 42, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 38, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 40, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 43, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 39, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 41, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 44, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 40, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 42, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 45, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 41, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 43, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 46, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 42, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 44, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 47, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 43, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 45, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 48, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 44, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 46, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 49, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 45, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 47, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 50, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 46, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 48, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 51, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 47, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 49, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 52, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 48, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 50, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 53, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 49, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 51, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 54, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 50, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 52, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 55, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 51, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 53, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 56, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 52, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 54, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 57, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 53, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 55, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 58, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 54, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 56, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 59, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 55, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 57, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 60, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 56, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 58, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 61, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 57, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 59, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 62, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 58, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 60, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 63, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 59, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 61, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 64, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 60, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 62, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 65, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 61, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 63, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 66, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 62, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 64, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 67, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 63, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 65, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 68, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 64, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 66, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 69, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 65, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 67, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 70, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 66, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 68, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 71, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 67, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 69, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 72, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 68, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 70, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 73, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 69, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 71, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 74, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 70, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 72, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 75, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 71, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 73, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 76, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 72, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 74, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 77, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 73, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 75, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 78, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 74, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 76, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 79, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 75, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 77, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 80, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 76, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 78, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 81, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 77, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 79, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 82, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 78, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 80, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 83, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 79, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 81, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 84, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 80, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 82, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 85, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 81, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 83, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 86, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 82, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 84, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 87, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 83, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 85, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 88, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 84, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 86, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 89, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 85, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 87, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 90, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 86, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 88, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 91, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 87, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 89, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 92, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 88, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 90, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 93, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 89, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 91, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 94, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 90, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 92, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 95, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 91, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 93, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 96, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 92, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 94, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 97, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 93, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 95, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 98, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 94, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 96, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 99, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 95, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 97, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 100, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 96, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 98, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 101, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 97, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 99, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 102, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 98, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 100, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 103, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 99, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 101, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 104, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 100, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 102, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 105, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 101, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 103, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 106, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 102, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 104, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 107, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 103, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 105, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 108, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 104, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 106, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 109, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 105, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 107, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 110, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 106, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 108, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 111, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 107, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 109, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 112, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 108, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 110, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 113, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 109, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 111, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 114, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 110, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 112, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 115, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 111, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 113, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 116, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 112, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 114, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 117, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 113, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 115, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 118, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 114, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 116, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 119, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 115, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 117, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 120, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 116, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 118, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 121, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 117, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 119, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 122, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 118, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 120, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 123, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 119, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 121, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 124, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 120, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 122, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 125, + z = 0 +} +2016-12-30 12:48:52: [Server]: Direction vector: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Next pos: { + y = 27.5, + x = 121, + z = 441 +} +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Last dir: { + y = -0, + x = 1, + z = -0 +} +2016-12-30 12:48:52: [Server]: Calculated dir vector is the opposite of last dir: true +2016-12-30 12:48:52: [Server]: ------------ Second attempt ------------ +2016-12-30 12:48:52: [Server]: Last known good dir: { + y = 0, + x = -1, + z = 0 +} +2016-12-30 12:48:52: [Server]: Moving into z direction +2016-12-30 12:48:52: [Server]: Next node is walkable: true +2016-12-30 12:48:52: [Server]: Start pos: { + y = 27.5, + x = 123, + z = 441 +} +2016-12-30 12:48:52: [Server]: Difference: { + y = -0.5, + x = 126, + z = 0 +} +2016-12-30 12:48:52: [Server]: Can't find feasable path. +2016-12-30 12:48:52: [Server]: { + param1 = 187, + name = "beds:bed_bottom", + param2 = 0 +} +2016-12-30 12:48:52: [Server]: { + param1 = 187, + name = "beds:bed_bottom", + param2 = 0 +} +2016-12-30 12:48:52: [Server]: { + inventory = { + "farming:bread 2", + "mobs:leather 1", + "default:iron_lump 8", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + }, + path = { + stuck_timer = 0, + stuck = false, + following = false, + lastpos = { + y = 0, + x = 0, + z = 0 + }, + way = { + + } + }, + nametag = "", + dialogues = { + normal = { + { + text = "Welcome to our village, stranger." + }, + { + text = "Welcome to our village, stranger." + } + }, + hints = { + { + text = "I need logs, do you have some?" + }, + { + text = "I would like to have some cotton plants around" + }, + { + text = "If I really hate something, that's cobblestone!" + }, + { + text = "If I really hate something, that's cobblestone!" + } + } + }, + base_size = { + y = 1, + x = 1 + }, + base_texture = { + "mobs_npc_male1.png" + }, + visual_size = { + y = 1, + x = 1 + }, + relationships = { + + }, + standing_in = "", + remove_ok = true, + mesh = "character.b3d", + freeze = true, + textures = { + "mobs_npc_male1.png" + }, + places_map = { + + }, + actions = { + action_timer = 0, + action_interval = 1, + queue = { + { + action = , + args = { + self = + } + }, + { + action = , + args = { + self = + } + }, + { + action = , + args = { + self = , + dir = 2 + } + }, + { + action = , + args = { + self = , + pos = { + y = 29, + x = -3, + z = 441.5 + } + } + }, + { + action = , + args = { + self = + } + }, + { + action = , + args = { + self = + } + }, + { + action = , + args = { + self = + } + }, + { + action = , + args = { + self = + } + }, + { + action = , + args = { + self = , + pos = { + y = 29, + x = -3, + z = 441 + } + } + }, + { + action = , + args = { + self = , + dir = 2 + } + }, + { + action = , + args = { + self = + } + } + } + }, + collisionbox = { + -0.2, + -1, + -0.2, + 0.2, + 0.8, + 0.2 + }, + npc_id = "7009:", + can_have_relationship = true, + gift_data = { + favorite_items = { + fav2 = "farming:seed_cotton", + fav1 = "default:tree" + }, + disliked_items = { + dis1 = "default:cobble", + dis2 = "default:cobble" + } + }, + sex = "male", + state = "stand", + trader_data = { + trader_status = "trader", + change_offers_timer = 0, + sell_offers = { + + }, + change_offers_timer_interval = 60, + buy_offers = { + + } + }, + object = , + base_mesh = "character.b3d", + health = 19, + old_health = 19, + old_y = 28.5, + base_colbox = { + -0.2, + -1, + -0.2, + 0.2, + 0.8, + 0.2 + } +} +2016-12-30 12:48:52: WARNING[Server]: active block modifiers took 206ms (longer than 200ms) +2016-12-30 12:48:53: [Server]: Executing action +2016-12-30 12:48:54: [Server]: Executing action +2016-12-30 12:48:55: [Server]: Executing action +2016-12-30 12:48:56: [Server]: Executing action +2016-12-30 12:48:57: [Server]: Executing action +2016-12-30 12:48:58: [Server]: Executing action +2016-12-30 12:48:59: [Server]: Executing action +2016-12-30 12:49:00: [Server]: Executing action +2016-12-30 12:49:01: [Server]: Executing action +2016-12-30 12:49:02: [Server]: Executing action +2016-12-30 12:49:03: [Server]: Executing action +2016-12-30 13:05:02: [Main]: INFO: signal_handler(): Ctrl-C pressed, shutting down. diff --git a/init.lua b/init.lua index 340ef90..b9ed104 100755 --- a/init.lua +++ b/init.lua @@ -32,5 +32,6 @@ dofile(path .. "/trade/trade.lua") dofile(path .. "/trade/prices.lua") dofile(path .. "/actions/actions.lua") dofile(path .. "/actions/places.lua") +dofile(path .. "/actions/pathfinder.lua") print (S("[Mod] Advanced NPC loaded")) diff --git a/license.txt b/license.txt index 9cecc1d..1d2bb1e 100755 --- a/license.txt +++ b/license.txt @@ -1,3 +1,7 @@ +Copyright (C) 2016-2017 Hector Franqui (zorman2000) + +Full GNU GPL v3: + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 diff --git a/npc.lua b/npc.lua index f4b4533..17a7b42 100755 --- a/npc.lua +++ b/npc.lua @@ -183,7 +183,7 @@ end -- Actions should be added in strict order for tasks to work as expected. function npc.add_action(self, action, arguments) self.freeze = true - minetest.log("Current Pos: "..dump(self.object:getpos())) + --minetest.log("Current Pos: "..dump(self.object:getpos())) local action_entry = {action=action, args=arguments} --minetest.log(dump(action_entry)) table.insert(self.actions.queue, action_entry) @@ -346,17 +346,22 @@ local function npc_spawn(self, pos) ent.places_map = {} -- Temporary initialization of actions for testing - local nodes = npc.places.find_new_nearby(ent, {"beds:bed_bottom"}, 20) + local nodes = npc.places.find_new_nearby(ent, {"cottages:tub"}, 30) + minetest.log("Found nodes: "..dump(nodes)) + + --local path = pathfinder.find_path(ent.object:getpos(), nodes[1], 20) + --minetest.log("Path to node: "..dump(path)) --npc.add_action(ent, npc.actions.use_door, {self = ent, pos = nodes[1], action = npc.actions.door_action.OPEN}) --npc.add_action(ent, npc.actions.stand, {self = ent}) - npc.add_action(ent, npc.actions.stand, {self = ent}) + --npc.add_action(ent, npc.actions.stand, {self = ent}) npc.actions.walk_to_pos(ent, nodes[1]) - npc.actions.use_bed(ent, nodes[1], npc.actions.bed_action.LAY) - npc.add_action(ent, npc.actions.lay, {self = ent}) - npc.add_action(ent, npc.actions.lay, {self = ent}) - npc.add_action(ent, npc.actions.lay, {self = ent}) - npc.add_action(ent, npc.actions.lay, {self = ent}) - npc.actions.use_bed(ent, nodes[1], npc.actions.bed_action.GET_UP) + --npc.actions.use_bed(ent, nodes[1], npc.actions.const.beds.LAY) + --npc.add_action(ent, npc.actions.lay, {self = ent}) + -- npc.add_action(ent, npc.actions.lay, {self = ent}) + -- npc.add_action(ent, npc.actions.lay, {self = ent}) + -- npc.add_action(ent, npc.actions.lay, {self = ent}) + --npc.actions.use_bed(ent, nodes[1], npc.actions.const.beds.GET_UP) + -- npc.add_action(ent, npc.action.stand, {self = ent}) -- npc.add_action(ent, npc.action.stand, {self = ent}) @@ -546,7 +551,7 @@ mobs:register_mob("advanced_npc:npc", { -- Spawn mobs:spawn({ name = "advanced_npc:npc", - nodes = {"default:stone"}, + nodes = {"mg_villages:plotmarker", "default:stone"}, min_light = 3, active_object_count = 1, interval = 5,